-----
how do I shut the sound off the .avi file on level1 from level0 ?
-----
you create a sound object in the timeline containing the video and set the volume to 0 or allow the user to stop the sound.
Code:
soundcontrol = new Sound(this); //assuming movie is in _level1
// sound off button
on(release){
_level1.soundcontrol.stop();
}
or
// sound mute button
on(release){
_level1.soundcontrol.setVolume(0);
}
------
But I'm also giving them the option of selecting a "director's commentary" track that cuts the sound of the .avi and plays a separate voiceover track.
------
this might require a separate audio stream. how do you plan on achieving this?