Created
July 27, 2012 11:02
-
-
Save DinisCruz/3187426 to your computer and use it in GitHub Desktop.
o2 Script: Simple examples of .script_Me() functionality
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //var topPanel = "{name}".popupWindow(700,400); | |
| var topPanel = panel.clear().add_Panel(); | |
| var textBox = topPanel.add_TextBox(true); | |
| textBox.set_Text("hello world"); | |
| textBox.script_Me(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //var topPanel = "{name}".popupWindow(700,400); | |
| var topPanel = panel.clear().add_Panel(); | |
| var textBox = topPanel.add_TextBox(true); | |
| textBox.set_Text("hello world"); | |
| textBox.script_Me() | |
| .set_Script("textBox.set_Text(\"Hi from the other script\");".line() + | |
| "textBox.azure();".line() + | |
| "return textBox;"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment