PDA

View Full Version : sound on mouse over



bOYDON gOODMAN
September 19th, 2003, 09:13 AM
Im trying to get a flash movie to play a sound when the mouse goes over a certain point in the movie... can anyone help?.. thanx

Digitalosophy
September 19th, 2003, 01:47 PM
import sound into flash. goto library and right click on sound. check forst and last checkboxes and give your sound an instance name


x =new Sound();
x.attachSound("sound.mp3"); // name you gave your sound


button ations


on(rollOver){
x.start(0,1);
}