Difference between revisions of "ObjectType:script"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 4: Line 4:
 
*[[DataType:string|string]] '''Filename''': Filename of this script
 
*[[DataType:string|string]] '''Filename''': Filename of this script
 
*[[DataType:variable|variable]] '''Variable['''name''']''': A given script-scope variable
 
*[[DataType:variable|variable]] '''Variable['''name''']''': A given script-scope variable
 +
*[[DataType:int|int]] '''RunningTime''': Number of milliseconds since this script began
 +
*[[DataType:string|string]] '''CurrentDirectory''': Current working directory for this script
  
 
== Methods ==
 
== Methods ==
 
*'''End''': Ends execution of this script
 
*'''End''': Ends execution of this script
 +
*'''QueueCommand['''command''']''': Inserts a command in the script's command queue
 +
*'''Squelch''': Squelches most output from this script (excluding most errors and generally excluding Echo)
 +
*'''Unsquelch''': Unsquelches
  
 
== Returns ==
 
== Returns ==

Revision as of 21:13, 22 July 2005

Description

Members

  • string Filename: Filename of this script
  • variable Variable[name]: A given script-scope variable
  • int RunningTime: Number of milliseconds since this script began
  • string CurrentDirectory: Current working directory for this script

Methods

  • End: Ends execution of this script
  • QueueCommand[command]: Inserts a command in the script's command queue
  • Squelch: Squelches most output from this script (excluding most errors and generally excluding Echo)
  • Unsquelch: Unsquelches

Returns

TRUE

Examples

See Also