请问怎么样实现用mediaplayer循环播放一首歌?(30分)

  • 主题发起人 主题发起人 appleman2000
  • 开始时间 开始时间
A

appleman2000

Unregistered / Unconfirmed
GUEST, unregistred user!
请问怎么样实现用mediaplayer循环播放一首歌?
或一个列表的歌?
 
onclick
begin
if (button=btstop)or(button=btpause)then
mediaplayer1.notify:=false
else
mediaplayer1.notify:=true;
end;
on notify
begin
with mediaplayer1 do
begin
if notify and //接受信息
and (mode=mpstopped) then//已经停止
begin
rewind;
play;
end;
notify:=true;
 
接受答案了.
 
后退
顶部