string array Arguments
|
An array of strings containing the command line
arguments passed to the weblication. To specify command-line arguments when running
a weblication, pass the --args flag to sash-runtime . For
example, if you run
% sash-runtime MyWeblication --args arg1 arg2 arg3
Sash.Linux.Arguments will be [arg1,arg2,arg3]
|
long Dialog(string title,
string prompt,
array buttons [,
long default_button,
long icon])
|
Presents an arbitrary dialog with title title containing prompt and buttons. The number of buttons and button text are determined by buttons, which contains an array of strings. default_button specifies the index of the default button, and icon determines the icon that should be displayed (0: Information, 1: Warning, 2: Error). Returns the index of the button pressed or -1 if the window is destroyed (with the 'x' button).
|