I’m working with ActivePresenter and I have an issue for which I’m looking for the most elegant solution:
I’ve added a video to a slide and want to divide it into three sections – all on the same slide. To achieve this, I’ve split the video into three separate video clips. My goal is:
- To start the first video with a simple click and let it play to the end.
- At the end of the first video, automatically display the first frame of the second video, which can then also be started with a click.
- To pause video playback by clicking on it again.
- At the end of each video, stop playback and display the first frame of the next video.
Currently, I’ve implemented this as follows:
- I’ve set the presentation to pause on load.
- For each video, I’ve added two actions:
- On click: Resume the presentation.
- On video end: Pause the presentation.
This works, but I’m wondering if there’s a more elegant way to achieve this without enabling the media controls (play/pause buttons). Or is my current implementation already considered best practice?
Thanks in advance for your help!
Best regards,
Felix