Mp3播放器进度条

问题描述 投票:0回答:1

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

这是正常的功能吗?

我在EnterFrame事件中使用以下内容。

duration = this.duration;
   pos = this.position;
   //The songs postion
   songPosition = (pos/duration)*100;
   updateProgress(songPosition);//Updates the progress Bar
flash actionscript mp3
1个回答
1
投票

在歌曲正确加载之前,可能无法知道位置和持续时间。所以我会在加载后启动进度条。 (onLoad listerner)

© www.soinside.com 2019 - 2024. All rights reserved.