Class:PushButton
From Torque Wiki
⧼monobook-jumptonavigation⧽⧼monobook-jumptosearch⧽PushButton
Used when the script is being used in a pushbutton
Pushbutton scripts are slightly different to normal scripts in that they only exist as part of the pushbutton itself
There are only 2 default functions in a pushbutton script, below is a quick example:
onInit = function() {
// Do some init here when the button was created
}
onButtonClicked = function(pushButton) {
pushButton.setTopText("Was");
pushButton.setBottomText("Clicked!");
}
Methods
/**
* Used to set the top text part of the pushbutton
* @param label
*/
public void setTopText(String label);
/**
* Used to set the bottom text part of the pushbutton
* @param label
*/
public void setBottomText(String text);