var P : TPlayer; var Song : TSongInfo; var strFile, strPath, strJingle : String; strPath := 'E:\CLOCK\'; //папка с отбивкой PAL.Loop := True; PAL.WaitForTime('XX:59:30'); //запускаемся в конце каждого часа P := SoundFX; strFile := strPath + FormatDateTime('hh', now+1/24) + '-00.mp3'; Queue.AddFile(strFile, ipTop); Song := Queue.NextInQueue; P.QueueSong(Song); P.Play;