OK, How would I make where in the start of the game a certain menu of the skin won't popup, but it will pop up when I call a proc.(I forgot the name)
.:WHEATIES:.
ID:272692
![]() Dec 6 2008, 5:54 am
|
|
![]() Dec 6 2008, 5:57 am
|
|
That would be winshow():
|
By default, winshow() shows the window, without need of the third argument.
If you don't want windows to pop up at login, just uncheck the Visible setting in the editor. Or if you want the boring way of showing a window, you could use winset() on the is-visible parameter. "true" and "false" show and hide the window, respectively. |
Just to let you know, winset() also can hide/show stuffs of the
skin editor, but, winshow() takes less typing in most of cases. Ex: winset(src,"window name","is-visible=true")//false to hide-true to show |
Or if you want the boring way of showing a window, you could use winset() on the is-visible parameter. "true" and "false" show and hide the window, respectively. What makes winset() boring? I've never used winshow(), though, so please enlighten me. |