View Single Post
  #1  
Old 12-13-2008, 05:08 PM
Ronnie Ronnie is offline
Registered User
Join Date: Jun 2008
Location: Nj, USA
Posts: 48
Ronnie is on a distinguished road
Send a message via AIM to Ronnie
Closing Gui Windows

Well, I have quite a problem, it's actually a rather odd problem, whenever I try to close my GUI windows in one of my scripts using another method then the red(x) , such as control.Hide(); and control.Destroy(); . It doesn't effect the GUI window control? Here is an example of one of my windows.

PHP Code:
new GuiWindowCtrl("Guild_Window_fapp") {
   
useownprofile true;
   
profile "gcpu1-window";
   
360;
   
115;
   
width 300;
   
height 375;
   
text "Guild System!";
   
destroyonhide true;
   
canmaximize false;
   
canminimize false;
   
canresize false;
   
canclose true
Thanks in advance
-Ronnie
Reply With Quote