Tag Archives: sound
Dynamic Sound – Part 2
Last post I started with the basic of dynamic sound in flash. Now we will do something more pratical with what we saw. We will create a piano that play notes by clicking or pressing keys. I will not spend … Continue reading
Dynamic Sound – Part 1
I spent the last couple weeks working on a project involving sound. Unfortunatly I can’t show it yet, but my goal was to play a bunch of musical notes at the same time in a especific interval. The first thing … Continue reading
Soundcard check
To check if the soundcard is available, test if the SoundChannel class is not null var sound:Sound = new Sound(); var channel:SoundChannel = sound.play(); if(channel != null){ trace("Soundcard available"); }else{ trace("Soundcard not available"); }