flash question
flash question
- Started
- Last post
- 3 Responses
- kwongkweng
hi all.
im just wondering if theres a way in flash to remove/disable the audio from your embedded video?
thanks very much for any input.
- unfittoprint0
name your video, and target it using a sound object
var s:Sound = new Sound(obj);
s.stop();
or
s.setVolume(0)
- kwongkweng0
cool. Thanks very much.
last quick question: is there a way to stop a sound to just a specific embedded video? (lets say theres more than 2)
Thanks again.
- unfittoprint0
in my earlier post >
var s:Sound = new Sound(obj)
obj stands for the instance name of your video.
therefore
you can create multiple sound objects targeting multiple videos, for separate control.