On this site, if you go to the “photos” page and then click on either “slamball action” or slamball style" you will notice the little numbered things at the bottom that when you click them a new image appears above.
How do you do that? I’m pretty new to Flash and don’t know much (nothing really) about action scripting. Would someone be able to walk me through how to do this effect?
I would REALLY appreciate any help anyone could provide.
there are many ways to do that. the way with the least amount of script would be to make all your buttons on one layer. then put a new picture on each frame. for instance pic1 on frame 1, pic2 on frame 2 ect. also make sure all your frames have the stop(); action on them. then on each button put:
on (release) {
gotoAndPlay(1);
}
make sure u change the 1 to the coresponding frame u want to go to. hope this helps.