Is there a way to get the presentation to return to a ‘main’ page if the presentation has not been interacted with within a given time period?
For example: someone interacts with the presentation, then goes away, leaving the presentation on page ‘x’ [which is not the main start of the presentation].
After 2 minutes of no user interaction, the presentation returns to main ‘landing’ page.
Hi Grayhem,
- Add the following action: Project > Bind > Project > Go to page number
- Select Script type on the Argument panel
- Paste the following code:
function() { if (document.inactivity == 5) return 1; }
- Change 5 to 120 (seconds) for two minute delay)
- Change 1 to the required page number
Daniel - that is perfect!! thanks so much - this was so hard to do in Adobe Flash!! Glad we found this software!
Your answer leads me to ask a further question though - I don’t really understand the ‘bind’ event - is there any documentation that would explain what this does and in what situation you would use it? What is it essentially doing?
In other words this fire event every frame