Jump to content

SpSleep

From EDM2
Revision as of 05:04, 31 March 2015 by Martini (talk | contribs) (Created page with "Suspends the current thread for a specified time interval. '''Syntax:''' CALL spSleep msec '''Parameter:''' msec – time to suspend in milliseconds Example Code: /* mslee...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Suspends the current thread for a specified time interval.

Syntax: CALL spSleep msec

Parameter: msec – time to suspend in milliseconds

Example Code:

/* msleep.cmd (spUtils Example Code) */
/* Waits the given number of milliseconds */
CALL RXFUNCADD 'spSleep','spUtils','spSleep'
PARSE ARG ms rest
CALL spSleep ms