Difference between revisions of "Command:ExecuteQueued"
Jump to navigation
Jump to search
Onetimehero (talk | contribs) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== Syntax == | == Syntax == | ||
− | {{CMD-DR|ExecuteQueued| | + | {{CMD-DR|ExecuteQueued|Beginner|Intermediate|Beginner|Intermediate}} |
− | ExecuteQueued | + | |
+ | ExecuteQueued [searchstring] | ||
== Description == | == Description == | ||
− | Executes a single queued command. | + | Executes a single queued command. Without parameters, it executes the command at the head of the queue. If a parameter is given, it executes the first command that matches the searchstring or portion of. |
== Examples == | == Examples == | ||
<tt>QueueCommand call MyFunction ${Something} | <tt>QueueCommand call MyFunction ${Something} | ||
− | ExecuteQueued</tt> | + | QueueCommand call AnotherFunction |
+ | QueueCommand call CoolFunction | ||
+ | ExecuteQueued | ||
+ | ExecuteQueued oolF</tt> | ||
== See Also == | == See Also == | ||
+ | *[[TLO:QueuedCommands|QueuedCommands]] | ||
+ | *[[Command:FlushQueued|FlushQueued]] | ||
+ | *[[Command:QueueCommand|QueueCommand]] | ||
*[[LavishScript:Commands|Commands]] | *[[LavishScript:Commands|Commands]] | ||
{{Command-Stub}} | {{Command-Stub}} | ||
+ | [[Category:LavishScript]] | ||
+ | [[Category:LavishScript Commands]] |
Latest revision as of 00:12, 1 August 2005
Contents
Syntax
ExecuteQueued | |
Usage | Beginner |
Level of Understanding | Intermediate |
Computer Savvy | Beginner |
Logic | Intermediate |
ExecuteQueued [searchstring]
Description
Executes a single queued command. Without parameters, it executes the command at the head of the queue. If a parameter is given, it executes the first command that matches the searchstring or portion of.
Examples
QueueCommand call MyFunction ${Something} QueueCommand call AnotherFunction QueueCommand call CoolFunction ExecuteQueued ExecuteQueued oolF