Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScript Beginner Tutorial/01 Hello world/02 Hello World UI.js')
-rw-r--r--JavaScript Beginner Tutorial/01 Hello world/02 Hello World UI.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/JavaScript Beginner Tutorial/01 Hello world/02 Hello World UI.js b/JavaScript Beginner Tutorial/01 Hello world/02 Hello World UI.js
new file mode 100644
index 0000000..cdbe3e8
--- /dev/null
+++ b/JavaScript Beginner Tutorial/01 Hello world/02 Hello World UI.js
@@ -0,0 +1,5 @@
+// load additional UI commands
+loadModule('/System/UI');
+
+// open message box
+showInfoDialog("Hello World", "Greetings"); \ No newline at end of file

Back to the top