Thread: quick question
View Single Post
  #4  
Old 09-09-2009, 12:56 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
PHP Code:
function showGui() {
  new 
GuiWindowCtrl("QuestControl_Window") {
    
profile GuiBlueWindowProfile;
    
    
clientrelative true;
    
clientwidth 320;
    
clientheight 240;
    
    
visible canClose canMaximize canResize canMinimize false;
    
    
text "Baddy Quest";
    
    
580;
    
208;
    
    new 
GuiButtonCtrl("QuestControl_Accept") {
      
profile "GuiEraButtonProfile";
      
      
width 80;
      
height 25;
      
      
26;
      
186;
    }
  }

Doesn't that look nicer?

Keep in mind that visible is a boolean, so you should not set it to '0'; instead use 'false'. "new" should also not be capitalized.

You would also do well to read this to avoid conflict later on.

As far as the profile, chances are there are some text offset things set in the profile. You can see more about that here.
__________________
Reply With Quote