Ver Mensaje Individual
  #2  
Antiguo 05-10-2008
ivanloco ivanloco is offline
Miembro
 
Registrado: abr 2006
Posts: 30
Reputación: 0
ivanloco Va por buen camino
Lo resolvi llamando a la siguiente funcion desde el evento OnNotify del componente MediaPlayer:

Código:
procedure TForm1.MediaPlayerNotify(Sender: TObject);
begin
  if MediaPlayer.NotifyValue = nvSuccessful then
    MediaPlayer.Play;
end;
Responder Con Cita