Forum Discussion
Is there any way to allow learners to toggle automatic advancement and playof slides on and off?
Hello.
My team and I are trying to make our eLearning more accessible. At the moment, we create our slides with automatic advancement to emulate something close to a video.
My question is, is there a way for us to allow learners to turn this off on their end and allow them to progress through the slide at their own pace?
Thanks!
- SamHillSuper Hero
The only way I think you would be able to do this is create a Boolean variable, for example autoProgress = true/false. Allow the user to toggle this variable. You would then need to add an if statement to your slide such as:
On slide timeline end > If autoProgress equals True > Goto next slide.
Therefore if autoProgress is false, the slide will not progress. It's a bit more work on your side, but you may be able to put the trigger in a master slide depending on your project structure.
- AyanaAldana-382Community Member
Thanks, Sam! We'll try this out!