Algun experto en Autoplay Menu Studio???????
Escribo aquí para ver si hay algun experto en autoplay que me pueda ayudar. Necesito cargar unos archivos de audio y que se reproduzcan de forma aleatoria, he encontrado el código de abajo para hacerlo seguidamente. ¿Alguien sabe como hacerlo de manera aleatoria? No puede ser dandole a project y despues a Audio Settings, por que así la música se carga desde la primera página y necesito que se cargue en otra página.
Gracias
Play Multiple Audio Files in Sequence
Insert the following code into your Global Functions (click Project, click Global Functions):
-- keep track of the audio files
audio_count = 1;
--loads desired audio files into a table
audio = {
"Autoplay\Audio\audio_file1.ogg",
"Autoplay\Audio\audio_file2.ogg",
"Autoplay\Audio\audio_file3.ogg"
};
Insert the following code into the On Show event of your page:
Audio.Load(CHANNEL_USER1, audio[audio_count], true, false);
Insert the following code into the On Audio event of your page:
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
Gracias
Play Multiple Audio Files in Sequence
Insert the following code into your Global Functions (click Project, click Global Functions):
-- keep track of the audio files
audio_count = 1;
--loads desired audio files into a table
audio = {
"Autoplay\Audio\audio_file1.ogg",
"Autoplay\Audio\audio_file2.ogg",
"Autoplay\Audio\audio_file3.ogg"
};
Insert the following code into the On Show event of your page:
Audio.Load(CHANNEL_USER1, audio[audio_count], true, false);
Insert the following code into the On Audio event of your page:
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