Thread: quick question
View Single Post
  #3  
Old 09-09-2009, 06:48 AM
Rave_J Rave_J is offline
Graal Developer
Join Date: Feb 2006
Location: Texas
Posts: 848
Rave_J can only hope to improve
Send a message via AIM to Rave_J Send a message via MSN to Rave_J Send a message via Yahoo to Rave_J
ya sorry here it is "umm the gui editor is really not that messy well i guess if you didn't make it
PHP Code:
New GuiWindowCtrl("MyGUI_Window1") {
    
profile GuiBlueWindowProfile;
    
clientrelative true;
    
clientextent "320,240";
    
profile.bitmap "guiera_window.png"
    
visible=0;
    
canclose false;
    
canmaximize false;
    
canminimize false;
    
canmove true;
    
canresize true;
    
closequery false;
    
destroyonhide false;
    
text "Baddy Quest";
    
580;
    
208;

    new 
GuiButtonCtrl("MyGUI_Button1") {
      
useownprofile true;
      
text "Accept";
      
width 80;
      
26;
      
186;
      
profile.bitmap "guiera_button.png";
    } 
Reply With Quote