How do you attach a sound to a movie clip in a hitTest? I am trying to get it to play "blackhole"?
Check google, I think its easier for AS3 to do sounds..
I need it in As2 though. My whole game is in As2.
Try this
//AS2var hitSound= new Sound();hitSound.attachSound("blackhole"
hitSound.start(0, 1); // 0 seconds delay, play 1 time
hitSound.stop();
You must be logged in to post a reply!