Class:PushButton

From Torque Wiki
Revision as of 14:24, 18 January 2022 by Ihawkins (talk | contribs) (PushButton)
⧼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.setTop("Was");
    pushButton.setBottom("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);