Name
WARNING -- send a warning message to the debug device (V6.1)
Synopsis
@WARNING msg$
Function
This preprocessor command will send the specified warning message to the debug device right before running the script. This allows you to conveniently store important information like to do lists, "fix me" parts, etc. alongside your source code and you will be reminded of them whenever you run your script.

This preprocessor command can be disabled by specifying the ‘-nodebug’ console argument when running a script or applet. In that case, this preprocessor command will do nothing at all. See Console arguments for details.

Inputs
msg$
error message to show
Example
@WARNING "FIXME: support other image formats"
The code above will send the string "FIXME: support other image formats" to the debug device right before Hollywood runs the script.

Show TOC