Long running InputScripts: We have a longer running InputScript and would like to indicate to the user that the script is still running. What is the best way to achieve this?
The simplest possibility is to add a suitable "title" command after each screen in the InputScript. The new title will be shown to the user while the InputScript is running. Example:

Screen ...

   Title  "Please wait... Setting maintenance data"

...

Screen ...

  Title "Please wait... Updating equipment data"

  ...

Screen ...

...

 Title "Please wait... Saving all data"

An alternative is to use "StatusMessage" which displays messages in a separate window; see the keyword documentation for details.