Flash--How to stop video sound?
Flash--How to stop video sound?
Out of context: Reply #4
- Started
- Last post
- 8 Responses
- thatblokemike0
sounds related to the component your using. Are you using the FLVPlayback? If so I have had issues in the past with that thing, try this...
public function killVideo() : void
{
if(_video!=null)
{
_video.stop();
_video.getVideoPlayer( _video.activeVideoPlayerIndex ).close();
_video = null;
}
}- All that to make the sound stop? Isn't there a proper way to do it directly?boobs