如何判断MediaPlayer1播放一个文件结束了?(5分)

  • 主题发起人 主题发起人 cjg325
  • 开始时间 开始时间
C

cjg325

Unregistered / Unconfirmed
GUEST, unregistred user!
如何判断MediaPlayer1播放一个文件结束了?
 
1:timer事件
if mediaplayer1.position=mediaplayer1.length
。。。。。。
2:nortify()事件
 
:nortify()事件什么意思?
 
D影子D说的没错,这两种方法都行:
1。用timer
2。在mediaplayer的onnotify事件中
if mediaplayer1.NotifyValue=nvSuccessful and mediaplayer1.mode=mpStopped then
 
同意楼上的
我觉得最好两种结合起来都用
一种不保险
我试过
 
trackbar.max=100
trackbar.min=0
mediaplayer.position=trackbar.posistion
if trackbar.postion=100 then

showmessage('finish')
 
在on Notify中
 
在on Notify中
if mediaplayer1.position=mediaplay1.length-1 then

//已停止
 
后退
顶部