by naveen on Sat Mar 31, 2007 11:20 am
Hey Ash,
One way is there in flash to play and stop the sound...
first import the sound into flash library...
take two blank key frames inside a movie clip...
Select the first frame and choose the sound from property bar's sound panel, do this same in second frame....
On first frame choose sync: start... and make it loop...
On second frame choose sync: stop... and make it Repeat 0
give stop action on two frames....
Make a hit button (Invisible button) over your text or sound logo... hit F6 to second frame...
Now you have same two invisible buttons on first and second frames....
On first frame paste this script on invisible button:
on (release) {
gotoAndStop(2);
}
On second frame paste this script on invisible button:
on (release) {
gotoAndStop(1);
}
Now play and enjoy your sound.....
Hey finally convey my birthday wishes to your someone....
ENJOY
Naveen
Last edited by
naveen on Sat Mar 31, 2007 11:48 am, edited 4 times in total.