Difference between revisions of "TLO:QueuedCommands"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
== Forms ==
 
== Forms ==
 +
*[[DataType:bool|bool]] '''QueuedCommands['''substring''']''': Searches currently-queued commands to determine if a queued command containing the given substring is currently queued (case sensitive)
 
*[[DataType:bool|bool]] '''QueuedCommands'''
 
*[[DataType:bool|bool]] '''QueuedCommands'''
 
: TRUE if this script has commands queued
 
: TRUE if this script has commands queued

Revision as of 12:11, 28 March 2015

Forms

  • bool QueuedCommands[substring]: Searches currently-queued commands to determine if a queued command containing the given substring is currently queued (case sensitive)
  • bool QueuedCommands
TRUE if this script has commands queued

Examples

Example code
Do
{
ExecuteQueued
}
While ${QueuedCommands}

See Also