<wx> Wait for X milliseconds.  The behavior of this command depends on the macro playback speed that can user specify for each macro in the "Item Properties" dialog box. 


Command Tree:   Macro Flow Control    \  Wait   \  Wait X milisec
.
Syntax:   <wx>(Time)
.
Time
Time to wait in milliseconds. 
.
Example:   <#> This macro shows how to use 'wx' command
<#>
<commands_only_on>

<varset>("vTime=","How many seconds to wait ?")
<varchng>("vTime","*","1000")
<wx>(vTime)
<msg>(100,100,"Specified time is out.","Message",1)