Name
SetTitle -- change the title of the current display
Synopsis
SetTitle(title$)
Function
This function changes the title of the currently active display to the new title specified in title$. This is only useful for changing the title while the script is running. If you want to give your application a global title, just use the @DISPLAY preprocessor command.

Inputs
title$
new window title
Example
SetTitle("My cool program")
The above code changes the window title to "My cool program".

Show TOC