Some rooms show a grey rectangle with a blue outline at the top of the screen, and that bothers me to no end. Is there a solution to this? To whom do I have to sell my soul?
I am a beginner, but I don't know if that's a beginner question [So please to flame my brains off if this question doesn't belong in here!! ;D ]
I don't want your soul, but if you send me ten pounds sterling, I'll gte rid of the rectangle for you. ;)
Here's a hint: try changing the Visible property of the GUI that looks like a grey rectangle.
The grey rectangle is a GUI (graphical user interface) that is meant to display a status line. You can turn it off by checking its GUI number in the GUI section of AGS (I guess it's 0), and adding the following line to the game_start function in the global script:
GUIOff(0);
If the GUI number is a different one, replace the 0 with it, of course. Now the grey reactangle should be gone.