Difference between revisions of "Bot Playground/Built-in Functions/Timer control"
From SmartBots Developers Docs
(Created page with "{{DISPLAYTITLE:{{SUBPAGENAME}}}} <onlyinclude> Standard timer control routines of javascript: setTimeout, setInterval etc. </onlyinclude> <syntaxhighlight lang="javascript">...") |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
− | <onlyinclude> | + | <onlyinclude>Standard timer control routines of javascript: setTimeout, setInterval etc.</onlyinclude> |
− | Standard timer control routines of javascript: setTimeout, setInterval etc. | + | |
− | </onlyinclude> | + | |
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> |
Revision as of 18:42, 13 July 2016
Standard timer control routines of javascript: setTimeout, setInterval etc.
// Call samples required
You can use standard javascript timer routines: setTimeout/clearTimeout and setInterval/clearInterval. For reference on these functions see official JavaScript reference.