7.5

Table Of Contents
Breakpoint (procedure)
Stops the execution of a PlanetPress Talk object when the specified expression is True. This breakpoint is effective only when
running in debug mode in the PlanetPress Talk editor.
Syntax
breakpoint( expression1 )
Argument
expression1
Boolean value.
Code Sample Example
This example sets up a loop, stops the loop on its 5th iteration, and then displays the value.
Example
define(&x,integer,1)for(&x,1,1,10)
breakpoint(&x = 5)
show(inttostr(&x))
endfor()
OutputDebugString (procedure)
Outputs a string to the PlanetPress Talk Messages window in PlanetPress.
Syntax
outputdebugstring(message)
Argument
message
String value to display in the PlanetPress Talk Messages window.
Variables
Define (procedure)
This command creates a new local variable, or redefines an existing one. The define procedure must appear before the var-
iable is actually used. PlanetPress Talk scripts require all variables to be defined either as a global variable in your document,
or a local scope variable within your PlanetPress Talk script.
Syntax
define( name, type, value )
Arguments
name
©2010 Objectif Lune Inc - 561 -