

Hello,
I was wondering if it is possible to use JavaScript to delay the next action, similarly the way you would using advanced actions. I don’t see this information listed anywhere in the JavaScript Interface.
Thanks
Hello,
I was wondering if it is possible to use JavaScript to delay the next action, similarly the way you would using advanced actions. I don’t see this information listed anywhere in the JavaScript Interface.
Thanks
You must be logged in to post a comment.

- Most Recent
- Most Relevant
How about something like this?
This is an example I did to test for a single slide that changes the state of a box after 5 seconds.
setTimeout(changeBox, 5000)
function changeBox() {
cp.changeState(“box”,”afterTimer”);
}
The number 5000 is in milliseconds and can be adjusted for the delay.