string about ()
Shows an About box for the ExtendScript component, and returns the text for the box.
void bp ([condition:
any])
Breaks execution at the current position.
Parameter | Type | Description |
condition |
any
| A string containing a JavaScript statement to be used as a condition. If the statement evaluates to true or nonzero when this point is reached, execution stops. (Optional) |
number colorPicker (color:
number)
Invokes the platform-specific color selection dialog, and returns the selected color.
Parameter | Type | Description |
color | number | The color to be preselected in the dialog, as 0xRRGGBB, or -1 for the platform default. |
any evalFile (file:
File[, timeout:
number=10000])
Loads and evaluates a file.
Parameter | Type | Description |
file | File | The file to load. |
timeout | number | An optional timeout in milliseconds. (default: 10000) (Optional) |
void gc ()
Initiates garbage collection in the ExtendScript engine.
string getenv (name:
string)
Retrieves the value of an environment variable.
Parameter | Type | Description |
name | string | The name of the variable. |
void setenv (name:
string, value:
string)
Sets the value of an environment variable.
Parameter | Type | Description |
name | string | The name of the variable. |
value | string | The value of the variable. |
void sleep (msecs:
number)
Suspends the calling thread for a number of milliseconds.
During a sleep period, checks at 100 millisecond intervals to see whether the sleep should be terminated. This can happen if there is a break request, or if the script timeout has expired.
Parameter | Type | Description |
msecs | number | Number of milliseconds to sleep. |
string toString ()
Converts this object to a string.
void write (text:
any)
Prints text to the Console.
Parameter | Type | Description |
text |
any
| The text to print. All arguments are concatenated. |
void writeln (text:
any)
Prints text to the Console, and adds a newline character.
Parameter | Type | Description |
text |
any
| The text to print. All arguments are concatenated. |
|