7.6

Table Of Contents
PlanetPress Alambic is the name of the RIP built in to PlanetPress (the RIP PlanetPress uses when you perform a preview and
select Internal interpreter as the PostScript interpreter).
version
String value containing the version number of the RIP the document is using to execute. For example, 4.0.
formversion
Integer value containing the version number of the document requested by the trigger. Recall that you can assign a version
number to a document and increment the number each time you update and reinstall the document. When you execute a doc-
ument that uses a version number, the document verifies its version number against the one you specify in the trigger, and it
proceeds with execution only if the two version numbers match. See the PlanetPress User Guide for more complete infor-
mation on versioning.
&Width (system variable)
System variable with a scope local to a specific object or group. The system initializes this variable to the value of the Width
property of the object’s or group’s Basic Attributes. You can reference and set this variable in any PlanetPress Talk code you
enter in the object, group, or page.
Syntax
&width measure value
@ (function)
Returns a selection within the current data page for text emulations.
The@ character can be the beginning of a data selection, a page call or a procedure or function call.
Syntax
@( line, startcolumn, endcolumn ) string value
Arguments
line
Integer value specifying the line on which to read the data in the current data page.
startcolumn, endcolumn
Integer values specifying the start/end columns of the chunk of data to read from the current data page.
Code Sample Example
The first line of code assigns data from the current data page to a variable. The second line of code checks for the presence of
a value inside the data page and sets a Boolean variable according to the results.
define(&invnum,string,@(7,50,59))
define(&isfirstpage,boolean,(strtoint(@(1,60,70))=1))
@name (function/procedure)
Executes a global function or procedure created using the function() command.
©2010 Objectif Lune Inc - 249 -