ok i have a menue made in the GUIs and I want to know:
how do i add text in the text box?
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...");
}
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.
thanks Rick