View Single Post
  #1  
Old 12-14-2007, 02:24 AM
Knightmare1 Knightmare1 is offline
Billy Allan
Knightmare1's Avatar
Join Date: Apr 2007
Posts: 804
Knightmare1 can only hope to improve
Changing Images for GUI (buttons)?

well, i am trying to make different GUIs for my server, like Events and Chatrooms, but i dont like the blue images. so how would i change them? i have a script test, what would change?
PHP Code:
new GuiWindowCtrl("window")
{
  
profile GuiBlueWindowProfile;
  
extent = {300,500};
  
position = {55};
  
text "This is the title";
  
  new 
GuiButtonCtrl("mybutton")
  {
    
profile GuiBlueButtonProfile;
    
extent = {10025};
    
position = {5,5};
    
text "Push me!";
  }
}


function 
mybutton.onAction()
{
  
player.chat "I pushed the button!";

posted image
Attached Images
 
__________________
I am the devil, I am here to do to devils work.

Last edited by Knightmare1; 12-14-2007 at 02:46 AM..
Reply With Quote