|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| pushButton.text.set(pushButtonID, label) |
Parameters
| ID | pushButtonID | ID of the push button.
| | STRING | label | New label of the push button. |
Return value
No value is returned.
Description
| Set the label of the specified push button. |
MioScript Sample Code
&myButton = pushButton.create(10,10,100,20, "wait...")
pushButton.text.set(&myButton, "Ok") |
|
|
|