在AS2中循环声音

时间:2013-09-07 17:09:12

标签: audio actionscript-2

当歌曲在Flash中播放完毕后,它通常会停止,除非您刷新页面,否则永远不会再播放。如何使用ActionScript 2.0重新启动(或“循环”)?

这是到目前为止的代码:

song = new Sound(); 
song.loadSound("Madeon - Finale.mp3", true); 

2 个答案:

答案 0 :(得分:0)

song = new Sound(); 
song.loadSound( "Madeon - Finale.mp3", true );

song.onLoad = function( success:Boolean )
{ 
    if (success)
    { 
        song.start(); 
    }
    else
    { 
        // fail 
    }
}

// replay
song.onSoundComplete = function()
{
    song.start();
}

答案 1 :(得分:0)

这是一个快速选项:

song = new Sound(); 
song.loadSound("Madeon - Finale.mp3", true);
song.start(0,999);

歌曲循环999次。