View Single Post
  #20  
Old 08-11-2010, 06:10 PM
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
For those who can't work from the snippet:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
createButton();
}

function 
createButton() {
  
with(Serverlist_TaskBar) {
    new 
GuiButtonCtrl("Serverlist_TaskButton_HelloWorld") {

      
useownprofile true;

      
// Copy GUI Values from Main Button
      
for (temp.iServerlist_TaskButton_Main.getvarnames()) {
        if (
temp.!= icon) (@ temp.i) = Serverlist_TaskButton_Main.(@ temp.i);
      }

      
500;
      
text "Hello World";

      
// Draw Icon
      
seticonsize(2020);
      
icon.clearall();
      
icon.drawimagestretched(00icon.widthicon.height"login_icon_developer4.png"003232);
      
width += 10;
      
      
// Setup Action Event Catcher
      
thiso.catchevent(this"onAction""onHelloWorldClicked");
    }
  }
}

function 
onHelloWorldClicked() {
  
player.chat "Whatup world!";

__________________
Quote:
Reply With Quote