Copy link to clipboard
Copied
Hey guys,
Im trying to make a project that basically a series of embedded videos in autoscript 3.0 that together form a short presentation. In between these embedded video, i have a pause and Im looking to use a keypress that would proceed to the next video clip. In short, I'm trying to make a glorified PowerPoint.
So far I have all my embedded video in a row on the timeline with the following actions:
and everything is working well however if i push the spacebar to advance to the next video, I still hear the audio of the first video in the background so i assume it is playing in the background. how can i fix this?
thanks!
If you add the first of these lines at the top, and the second one just before your 'play()' line, it should stop all sounds:
import flash.media.SoundMixer;
SoundMixer.stopAll();
Copy link to clipboard
Copied
If you add the first of these lines at the top, and the second one just before your 'play()' line, it should stop all sounds:
import flash.media.SoundMixer;
SoundMixer.stopAll();
Find more inspiration, events, and resources on the new Adobe Community
Explore Now