[Học phần mềm] AutoPlay 4 Phát nhiều bản nhạc
admin
2021-03-12T16:52:30+07:00
2021-03-12T16:52:30+07:00
https://linhhoitrithuc.com/hoc-phan-mem-sang-tao/hoc-phan-mem-autoplay-4-phat-nhieu-ban-nhac-322.html
https://linhhoitrithuc.com/uploads/news/2021_03/image-20210312163855-2.png
Chia sẻ tài nguyên vô tận
https://linhhoitrithuc.com/uploads/logo_1.png
< Back – Một số ví dụDùng On Audio phát nhiều bản nhạc liên tục khi chạy chương trình, thường thấy ở các đĩa CD/DVD cài đặt - Nhấn phải vào Project > Global Functions… nhập:
— keep track of the audio files
audio_count = 1;–loads desired audio files into a table
audio = {
“AutoplayAudioaudio_file1.ogg”,
“AutoplayAudioaudio_file2.ogg”,
“AutoplayAudioaudio_file3.ogg”
}; - Nhấn phải vào Page1 > Properties > Script > On Show, nhập:
Audio.Load(CHANNEL_USER1, audio[audio_count], true, false);if e_State == “Finish” then
audio_count = audio_count + 1;
–ensures a valid file will be loaded
if audio_count < Table.Count(audio)+1 then
Audio.Load(CHANNEL_USER1, audio[audio_count], true, false);
end
end