|
|
The do_actions_of, do_drop_in_actions_of, do_menu_actions_of, and source commands execute the specified actions within the same thread, rather than in a separate thread.
You might want to do this to keep control over the order in which the actions are executed. For example, the following script sends the example myprint trigger, below, to a sequence of icons in the variable $*:
for i in $*
do
do_actions_of myprint $i
done
Because a do_actions_of command is used,
each myprint action executes and completes
before the next one is started.
See also: