Multichannel Systems Roboocyte2 Scripting Manual User Manual
Page 10

Roboocyte2 Manual
10
1.3.2 Robo2. GUI-Commands
Robo2.
Parameter(s) Action
Cond. Example Script
Log("x")
string
Plots the message "x" in the Log window
---
Messages_eg.js
Information("x") string
Opens a dialog with "x". Script execution is suspended until OK is pressed
R-
Messages_eg.js
Question("x")
string
Opens a dialog with "x". Different control paths in the script can be executed
by using the return value of the function.
The return value is true if Yes was clicked, false otherwise
R-
Messages_eg.js
1.3.3 Robo2. Variable Handling Commands
Robo2.
Parameter(s)
Action
Cond. Example Script
SetDialogVariable(x, y, z)
string: x = name
int: y = value
string: z = description
defines and sets a value to a variable that can be changed
interactively by a dialog during script execution (ShowDialog)
---
Variables_eg.js
ShowDialog()
---
shows dialog to check and change values for variables defined
with SetDialogVariable()
R-
Variables_eg.js
ShowStandardDialog()
---
shows dialog to check and change values for the predefined
(standard) variables
R-
Variables_eg.js