People, urgent need, I created a music player, and I need to place a progress bar that accompanies the beginning till the music teminar.
Can anyone help me please?
Can anyone help me please?
-- Load music Audio.Load(CHANNEL_BACKGROUND, "AutoPlay\\Audio\\song.mp3", true, false); nLength = Audio.GetLength(CHANNEL_BACKGROUND); Progress.SetRange("Progress1", 0, nLength); Progress.SetStep("Progress1", 1); Progress.SetCurrentPos("Progress1", 0); Page.StartTimer(1000, 1);
if (e_State ~= "Play") and (e_Channel == CHANNEL_BACKGROUND) then Page.StopTimer(1); end
if (e_ID == 1) then Progress.StepIt("Progress1"); end
Comment