This is my main function to attach FLV audio track from library:
var IntroMovieInstance:MovieClip = this.createEmptyMovieClip("IntroMovie", this.getNextHighestDepth());
var Intro_Sound:Sound = new Sound(IntroMovieInstance);
function Intro_attachedSounds(IntrolinkageName:String) {
Intro_Sound.attachSound(IntrolinkageName);
Intro_Sound.start();
}
This is the above function's call when the FLV video starts:
Intro_attachedSounds("audio_FR_intro");
|