Question
Action Script and Button help
I am following a tutorial on making a flash site so I know how to make one for a client of mine, Im following the instruction peice by pecie. Its as follows
(where Im currently at😞Making The Music Buttons1. From Scene1, make 1 button. (Insert>New Symbol)and call it genericbutton. (Check)2. In layer 1, click on the frame under Hit state and press F7 to insert a blank keyframe. Draw out a small rectangle. Remember, you only need th fill. If you have a stroke, delete it. It just adds to file size. Also, color doesnt matter. This generic button is a hot spot (image map). (Check)3. Use the Align panel to center align this rectangle to stage. (Check)4. In Scene1, the track buttons layer, drag out 5 instances of the generic button. Place one instance over each number, and one instance over the "off". You may need to scale these instances so they fit nicely over the text. (Check)5. Click on the button that is over the number 1 and insert the following Objeck Actions:
on (release) {
stopAllSounds ();
with (music1) {
gotoAndStop (2);
}
with (music2) {
gotoAndStop (1);
}
with (music3) {
gotoAndStop (1);
}
with (music4) {
gotoAndStop (1);
}
}Now, I click on that image hopt spot, go to actions, and it will not allow me to put any actions over that image hotspot. I get the following message on the Actions Panel "Current selection cannot have actions applied to it". For anyone else that been working with Flash longer than I have, what might be going on and why won't this work? Im actually thinking about installing Flash5 on here, maybe I will have a little bit more succes. Any suggestions would be great. Thank you.