Hello,
No, i didn't read that, but I don't a "Mediaplayer". Just a command like
var
afsound:Tprocess;
fl:string;
begin
isPlaying := false;
fl := Application.Location;
fl := copy(fl,1,Pos('/project1.app',fl)-1);
afsound := Tprocess.create(nil);
afsound.CommandLine := 'afplay ' + '''' + fl + '/Test.mp3' + '''';
afsound.Execute;
afsound.Free;
Thank you in advance.
Regards,
Student043