Hiding parser on wait

OurJud
06 Jan 2016, 20:17
Is it possible to hide the flashing parser/cursor when using the wait function?

jaynabonne
06 Jan 2016, 20:49
Doesn't it do that already? (At least in the desktop version it seems to for me in a test.)

Are you referring to the wait for keypress?

OurJud
06 Jan 2016, 22:02
Sorry, I was just about to clarify. I mean the wait (for x seconds) function, not the keypress.

jaynabonne
06 Jan 2016, 22:31
If you add these two functions to your game:

<function name="HideCommandBar">
request (Hide, "Command")
</function>

<function name="ShowCommandBar">
request (Show, "Command")
</function>

then you can hide and show the command bar whenever you like by calling them.

OurJud
06 Jan 2016, 22:39
Thank you.

I can't quite believe I managed to interpret that post successfully, but I did.