Flash 101

hehe…you will probably laugh at this site but hey its my first attempt…and i mean first…

anyway as you see the arrows are just tweens that loop. i don’t know as very well but what i want is when you mouse over the button the arrow takes a windy path to where the arrow ends up now…hope that makes sense…if anyone can help or would like too that would be cool

www.spectatorsgrilleandbar.com

oh yeah and heres the .fla files if that help…

there all going to laugh at me…lol:toad:

i guess no fla file too big…something else i have to work on

What you need to do is make the arrows as Movie Clips.

Make the first frame of the Movie Clip blank and put a stop action in it ( stop(); ).

Then make your animation on the next frames.

Then on your button on the _root timeline. Have the onRollOver action go to your movie clip and play starting at the second frame.

<code>
myButton_btn.onRollOver = function () {
myMovieclip_mc.gotoAndPlay(2);
}
</code>

In this code example myButton is the name of your button…and myMovieClip is the name of the arrow animation.

Good Luck :slight_smile:

Michael

aww its not that bad you should have seen my first attempt at flash
(i didnt even know how to make an MC)
but um… i think you should put a preloader

i don’t know the first thing about using a preloader or how to make one.:slight_smile: anyone know a good tutorial or something. :slight_smile:

Look the tutorial section here on Kirupa. Lots of good tutorials there.
:slight_smile:

cool thanks

You re welcome :wink: