Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Meny on Thu 20/12/2007 22:49:43

Title: The Text Box\GUI is blocking everything (SOVLED)
Post by: Meny on Thu 20/12/2007 22:49:43
I had made a GUI with Text Box and when this GUI is on, all the keys are not working. I know that because the text box, but I saw that it not have to block. And it blocks buttons too.
Someone have an idea? And why it happens? Because the text box or the GUI?
Thanks.
Title: Re: The Text Box\GUI is blocking everything
Post by: monkey0506 on Fri 21/12/2007 05:02:09
Some obvious items:

1) Does the text box actually show up on the GUI when you turn the GUI on?

    Make sure your TEXTBOXNAME.Visible property is set to true.

2) Is the GUI enabled?

    Make sure that GUINAME.Enabled is set to true. If it's not, the text box won't work.

3) Is the text box enabled?

    Make sure that TEXTBOXNAME.Enabled is set to true. If it's not, the text box won't work.

4) Still having problems? How about posting some code? Showing us what you've done already will help us further debug your issue.
Title: Re: The Text Box\GUI is blocking everything
Post by: Meny on Sun 06/01/2008 01:44:37
Thanks for the help, I figure what was wrong.
Title: Re: The Text Box\GUI is blocking everything (SOVLED)
Post by: monkey0506 on Sun 06/01/2008 05:06:36
Do you mind telling us what the problem was for other users' future reference?
Title: Re: The Text Box\GUI is blocking everything (SOVLED)
Post by: Meny on Sun 06/01/2008 11:49:54
I loved to, even I hoped to avoid it.  :) I didn't reed the manual good enough, so when I make GUI visible "Popup Modal" I didn't know it will block keys and mouse clicks and this was my problem, so when I do that the visible is "Normal" and reed in the manual how to false the visible everything was all fine and work.