22.11.10.1 Debug Function

Displays the designated address or text on the screen to debug it.
After you finish debugging and you clear the script editor's [Enable Debug Function] check box, none of the scripts are deleted. Only the debug screen does not appear.

_debug (Parameter 1)

Example expression 1:

The following script displays the value of the Word Address.

[w:[#INTERNAL]LS0100]=100
_debug([w:[#INTERNAL]LS0100])
_debug(_CRLF)
[w:[#INTERNAL]LS0100]=50
_debug([w:[#INTERNAL]LS0100])

Example expression 2:

The following script displays a line feed and text.

_debug("Test1")
_debug(_CRLF)
_debug("Test2")