Notification commands
The Notification commands are used to get the user's attention by displaying a message or making a sound.
Beep
The Beep command plays the system beep sound.
Sample code
Beep
DebugLog(message As String)
Displays the specified message in the Messages pane.
Print(text As String)
Displays the specified text in a simple dialog box with an OK button.
Sample code
Display "hello":
Print("Hello")
ShowURL(url As String)
Displays the URL in the default web browser.
Sample code
ShowURL("http://www.xojo.com")
Speak(text As String)
The Speak command speaks the supplied text.
Sample code
Say "hello":
Speak("Hello")