Hi! Is it possible to turn a GUI label on and off. I tried to search for a code for it in the Help Contents but I couldn't find anything like that.
The upcoming AGS version (2.7) makes it possible with label.Visible property.
As a workaround, you can probably move it off the GUI area ( SetGUIObjectPosition(GUI, LABEL, -1000, -1000) ) or clear the text ( SetLabelText("") ).
Thanks! I'll try that. Good thing it's coming with the later version.