Copy link to clipboard
Copied
Hello again ,
I have a customer that needs all videos and activities (eg Drag and drop) stopped while the "Help" window is opened.
The problem is that I can stop the audio and playback of the real slide but do not know how to do that with a video inside the slide.
It is done through this AA:
Thanks a lot!
If this is event video, there is no way to pause the video because it plays independently of Captivate, reason why it has its proper control panel. If you need to pause the video, you have to use syncrhronized video. Have a look at:
Copy link to clipboard
Copied
If this is event video, there is no way to pause the video because it plays independently of Captivate, reason why it has its proper control panel. If you need to pause the video, you have to use syncrhronized video. Have a look at:
Copy link to clipboard
Copied
Basically what I thought...
Now I have resorted to simply hide the video when the help screen comes up and then show it again afterwards. Not very elegant...
Copy link to clipboard
Copied
You can pause an event video with JavaScript
Pause video:
document.getElementsByTagName("video")[0].pause();
Play video:
document.getElementsByTagName("video")[0].play();