2011-01-24 133 views
0

我的mp3播放器有一個mp3進度條。當歌曲加載/播放時,進度條跳轉直到歌曲完全下載/加載。MP3播放器進度條

這是正常的功能。

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

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

回答

1

位置和持續時間可能不知道,直到歌曲獲得正確加載。所以我會在加載後啓動進度條。 (onLoad listerner)

+0

謝謝,幫助。 – james 2011-01-24 04:59:50