Difference between revisions of "TLO:QueuedCommands"
Jump to navigation
Jump to search
Onetimehero (talk | contribs) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
== Forms == | == Forms == | ||
− | *[[ | + | *[[ObjectType:bool|bool]] '''QueuedCommands['''substring''']''': Searches currently-queued commands to determine if a queued command containing the given substring is currently queued (case sensitive) |
+ | *[[ObjectType:bool|bool]] '''QueuedCommands''' | ||
: TRUE if this script has commands queued | : TRUE if this script has commands queued | ||
== Examples == | == Examples == | ||
− | + | ;Example code | |
+ | Do | ||
+ | { | ||
+ | ExecuteQueued | ||
+ | } | ||
+ | While ${QueuedCommands} | ||
== See Also == | == See Also == | ||
*[[Command:ExecuteQueued|ExecuteQueued]] | *[[Command:ExecuteQueued|ExecuteQueued]] | ||
*[[Command:FlushQueued|FlushQueued]] | *[[Command:FlushQueued|FlushQueued]] | ||
*[[Command:QueueCommand|QueueCommand]] | *[[Command:QueueCommand|QueueCommand]] | ||
− | + | {{LavishScript:Top-Level Object}} | |
− | |||
− |
Latest revision as of 16:46, 8 July 2018
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
LavishScript Top-Level Objects