Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Mixand on Thu 14/05/2009 19:51:16

Title: Titlescreen: How do I take away the iconbar at the top for one room? (FIXED)
Post by: Mixand on Thu 14/05/2009 19:51:16
gIconbar.Visible = false;
Title: Re: Titlescreen: How do I take away the iconbar at the top for one room? (FIXED)
Post by: Invalid on Sat 16/05/2009 21:55:33
function room_Load()
{
gstatusline.Visible = false;     //on the room you dont want it
}



function room_Load()
{
gstatusline.Visible = true;     // on the rooms connected to the other
}
Title: Re: Titlescreen: How do I take away the iconbar at the top for one room? (FIXED)
Post by: Trent R on Sun 17/05/2009 05:12:52
Actually, it'd be better to use the 'when player leaves room' function rather than copying and pasting the function in two multiple other rooms

~Trent