View Single Post
  #8  
Old 07-20-2006, 10:59 PM
Omini Omini is offline
Millenium Owner
Join Date: Feb 2006
Location: N.Ireland
Posts: 293
Omini is on a distinguished road
Send a message via AIM to Omini Send a message via MSN to Omini Send a message via Yahoo to Omini
If you want the button to be within the window you created, then it has to be something like this

PHP Code:
new GuiWindowCtrl("MyWindow") {
  new 
GuiButtonCtrl("MyButton") {
    
width 70;
    
height 30;
    
10;
    
30;
    
text "Press Me";
  }
}

function 
MyButton.onAction() {
  
player.chat "Yay!";

__________________



Reply With Quote