Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: The Almighty Metroid on Tue 14/10/2008 02:09:44

Title: GUI txt box help
Post by: The Almighty Metroid on Tue 14/10/2008 02:09:44
ok i have a menue made in the GUIs and I want to know:
how do i add text in the text box?
Title: Re: Starting Menu
Post by: RickJ on Tue 14/10/2008 03:22:03
1. gMyGui.Visible = false;     // Online Manual Reference (http://www.adventuregamestudio.co.uk/manual/GUI.Visible.htm)

2. Create an intro room and have the player character start in that room.   Create a "Player enters room" event handler function and put script commands in that function like this:


function room_Load() {
     Display("Some intro text...");
     Wait(100);
     Display("Some more intro text...");
     Wait(100);
     Display("Some other intro text...");
}
Title: Re: Starting Menu
Post by: Khris on Tue 14/10/2008 09:32:26
Metroid, you're asking all the typical beginner's questions. If you're unable to find those answers in the manual, at least use the forum search before opening thread after thread.
Title: Re: Starting Menu
Post by: The Almighty Metroid on Tue 14/10/2008 20:21:34
thanks Rick