Adding a sound clip to a collision senarios - How?

Can someone tell how to add a soundclip (.wav) to the following scenario:\r\r\rif (_root.yellow, hitTest(_root.white)) {\r\r&nbsp &nbsp &nbsp &nbsp speedx = -bounce80;\r&nbsp &nbsp &nbsp &nbsp speedy = -bounce*90;\r\r…PLAY A SOUND CLIP HERE !!!\r&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp \r&nbsp &nbsp &nbsp &nbsp }\r\r\rTHANKS.

import your sound, then create a movie clip and set it up like this:\rframe 1:\rstop();\rframe 2:\rput your sound in it.\r\rnow, put that clip on the stage and give it a name.\rthen:\rif (_root.yellow, hitTest(_root.white)) {\rspeedx = -bounce80;\rspeedy = -bounce90;\r_root.mcSoundClip.play();\r}\r\rwhere ‘mcSoundClip’ is the name of the clip with the sound in it.\r:) \rjeremy

Thanks Jeremy!