Flash Mp3播放器进度条

Flash Mp3播放器进度条,flash,actionscript,mp3,Flash,Actionscript,Mp3,我的mp3播放器中有一个mp3进度条。当歌曲正在加载/播放时,进度条会跳来跳去,直到歌曲完全下载/加载 这是正常的功能吗 我在EnterFrame事件中使用以下命令 duration = this.duration; pos = this.position; //The songs postion songPosition = (pos/duration)*100; updateProgress(songPosition);//Updates the progress B

我的mp3播放器中有一个mp3进度条。当歌曲正在加载/播放时,进度条会跳来跳去,直到歌曲完全下载/加载

这是正常的功能吗

我在EnterFrame事件中使用以下命令

duration = this.duration;
   pos = this.position;
   //The songs postion
   songPosition = (pos/duration)*100;
   updateProgress(songPosition);//Updates the progress Bar

在歌曲正确加载之前,位置和持续时间可能不知道。因此,我将在加载后启动进度条。(加载侦听器)