Computer Science Canada

Music in Turing?

Author:  ICS 3M1 [ Wed Jan 17, 2007 10:06 am ]
Post subject:  Music in Turing?

Could i put a music file...such as an mp3 into turing and have it loop while my program runs? Please reply, thanks.

Author:  Tony [ Wed Jan 17, 2007 12:21 pm ]
Post subject:  Re: Music in Turing?

Yes, you can play a file in the background using Music.PlayFileReturn("song.mp3")

Having a short clip loop over and over would require *sigh* a process
Turing:

process my_music_loop
   loop
      Music.PlayFile("clip.mp3")
   end loop
end my_music_loop

Author:  Flying_Fajita [ Thu Jan 18, 2007 2:41 am ]
Post subject:  RE:Music in Turing?

Thanks! I found it helpful


: