0

ストリーミングしているビデオがいくつかあります。私はから始めて、video_1.flvそれが終了した後video_2.flv、ユーザーが他の映画を再生するなどのアクションを実行するまで、実行とループを繰り返しますvideo_3.flv。だからvideo_2.flv、バックグラウンドで再生されているときに、オーディオファイルを再生する必要がありますsound.mp3。魔女はループされます。しかし、両方を独立して実行する必要があります。現在、ビデオがループしているときにオーディオがループしているからです。そして、再生時にのみオーディオを再生する必要がありますvideo_2.flv。ありがとうございました。

var nc:NetConnection = new NetConnection();
nc.connect(null);

var ns:NetStream = new NetStream(nc);
loader.vid.Video_1.attachNetStream(ns);



var listener:Object = new Object();
listener.onMetaData = function(evt:Object):void {};
ns.client = listener;

ns.play("http://media.easyads.bg/ads/display_ads_richmedia/video/avon/maria_ilieva/video_1.flv");
ns.addEventListener(NetStatusEvent.NET_STATUS, NCListener);

var clipTimer:Timer = new Timer(4000);

function NCListener(e:NetStatusEvent){

    if (e.info.code == "NetStream.Play.Stop") {

        ns.play("http://media.easyads.bg/ads/display_ads_richmedia/video/avon/maria_ilieva/video_2.flv");
        sound.load(req);
        shaker(null);
        }
};

    var sound:Sound = new Sound();
    var soundChannel:SoundChannel;
    var req:URLRequest = new URLRequest("sound.mp3");
    sound.addEventListener(Event.COMPLETE, onSoundLoadComplete);

    function onSoundLoadComplete(e:Event):void{
        sound.removeEventListener(Event.COMPLETE, onSoundLoadComplete);
        soundChannel = sound.play();
        soundChannel.addEventListener(Event.SOUND_COMPLETE, onSoundChannelSoundComplete);
    }

    function onSoundChannelSoundComplete(e:Event):void{
        e.currentTarget.removeEventListener(Event.SOUND_COMPLETE, onSoundChannelSoundComplete);
        soundChannel = sound.play();
    }
loader.button_01.addEventListener(MouseEvent.CLICK, play_video_01);
loader.button_01.addEventListener(MouseEvent.ROLL_OVER, play_effect_01);

function play_video_01 (event:MouseEvent){

    clipTimer.stop();
    ns.play("http://media.easyads.bg/ads/display_ads_richmedia/video/avon/maria_ilieva/video_3.flv");
    loader.button_01_mc.gotoAndPlay (41);
}
4

1 に答える 1