mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
16 lines
338 B
Matlab
Executable file
16 lines
338 B
Matlab
Executable file
#include "lib/std.mi"
|
|
|
|
Global Button play_button;
|
|
|
|
play_button.onLeftClick () {
|
|
messageBox("play_button.onLeftClick", "Success", 0, "");
|
|
}
|
|
|
|
System.onScriptLoaded()
|
|
{
|
|
messageBox("onScriptLoaded", "Success", 0, "");
|
|
|
|
play_button = getContainer("main").getLayout("normal").findObject("Play");
|
|
|
|
play_button.leftClick();
|
|
}
|