Using settimeout or some way to pause
dennmans
02 Mar 2016, 21:54I am trying to do the following:
Hello Bob
setTimeout (5000); // i.e. pause for 5000ms
Bob? Are you there?
How do I do this?
Hello Bob
setTimeout (5000); // i.e. pause for 5000ms
Bob? Are you there?
How do I do this?
cliffale
24 Mar 2016, 17:24Did you ever figure it out, dennmans?
Alex
26 Mar 2016, 11:23You could do it like this:
[[Start]]:
setTimeout(function () {
squiffy.story.go("next");
}, 5000);
Hello Bob!
[[next]]:
Bob, are you there??