Name SpeedwalkDelay
Type Property
Summary The number of milliseconds delay between speed walk commands
Prototype short SpeedwalkDelay;
Description This property is used to retrieve, or set, the number of milliseconds which elapses between sending speed walk commands (or commands sent with the Queue method).

The interval is in milliseconds. There are 1000 milliseconds to the second.

The valid range for the speed walk delay is 0 to 30000 milliseconds (0 to 30 seconds).

If the interval is zero, then commands are not queued, but are sent immediately, as fast as possible.

Setting the interval to zero, when it was previously some other value, flushes any outstanding commands from the queue, so they are sent immediately.
VBscript example
world.note world.SpeedwalkDelay ' display delay
world.SpeedwalkDelay = 5000 ' make delay 5 seconds
Jscript example
world.note(world.SpeedWalkDelay); // display delay
world.SpeedwalkDelay = 5000; // make delay 5 seconds
PerlScript example
$world->note ($world->{SpeedwalkDelay});  # display delay
$world->{SpeedwalkDelay} = 5000;  # make delay 5 seconds
Returns This is a property. You can review or change the number of milliseconds between sending speedwalk commands.

See also ...