View Single Post
  #6  
Old 08-08-2010, 01:34 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
PHP Code:
//#CLIENTSIDE
function onCreated() {
  
createProfiles();
}

function 
createProfiles() {
  new 
GuiButtonProfile("MyButtonProfile") {
    
fontsize 20;
  }
}

function 
createButton() {
  
// With Profile
  
new GuiButtonCtrl("RandomButton") {
    
100;
    
text "Hello";
    
profile "MyButtonProfile";
  }
  
// Without Profile
  
new GuiButtonCtrl("RandomButton2") {
    
200;
    
text "Hello";
  }

You simply just add the one profile line to the GUI object, and it creates it with the inherited profile values. In this example it inherits MyButtonProfile's values
__________________
Quote:
Reply With Quote