In my actionscript when the user presses the space bar ill have it call some function to play a sound.
firstSound = new Sound();
firstSound.attachSound(“SkidStop”);
firstSound.start(.75);
Now im not quite sure why, but when you hold the key down it keeps adding the same sound over and over again until you let go of the spacebar. So my question is how do you code the script to play the sound just once, when the space bar is still down? :puzzle: