you can make 2 buttons: with and without sound on UP..
anyway... in the actionscript
// on the frame:
sunet = new Sound();
sunet.loadSound('external_sound.mp3');
// it loads with the page
// on the button
on (press) {
sunet.start();
}
on(release){
do_something else... redirect or else 
}
|