Hi guys, I am running AS2 and I have an FLV video and want to know how I can stop it from automatically playing and I also want to know how I can mute the video constantly (rather than having to mute it once it started)
Hi guys, I am running AS2 and I have an FLV video and want to know how I can stop it from automatically playing and I also want to know how I can mute the video constantly (rather than having to mute it once it started)
Hi,
Maybe
PHP Code:myVideo.autoPlay = false;
// or
myVideo.autoPlay = true;
myVideo.volume = 0;
// or
myVideo.volume = 100;