The Infinite Menu

Hi

I’ve completed this tutorial and its working like magic - cheers ilyas. Could I have some help with some changes I am making that I am having a challenge with?

I’ve moved the main menu MC to frame 2. I’ve made a button with one of the menu that makes up the slider and placed this on the first frame. This btn is assigned gotoAndPlay(2). Both of these frames I’ve assigned stop() to. So now there’s no action until a mouse event. So good so far. What I need help with is to have another mouse event take the movie back to frame 1 so the menu stops sliding when the user’s mouse is know longer over the flash object on a page.

Erm… can you just have an X button in there that doesn’t move, and when it is clicked, it takes youto frame 1?

This would be covering the slider menu so the links would be obstucted, I think

Don’t have it over the menu :-\

Or you can have the code on each of your buttons to play what you want them to play and also to go to Frame 1 of that movie.

The effect I am looking for is that when the mouse leaves the slider the movies goes back to frame 1 and its static again. :-\

Ok… if your menu is inside a main movie clip then on the main movie clip add this…

on (rollOut){
gotoAndStop(1);
}

You can use button statements on movie clips in MX.

I didn’t do the tutorial yet so I am not sure how it is being done.

could you look at an example fla. ?

Sure :slight_smile:

here it is:) Forgot where I put it at first. I must organise my files

Hmmmm, It doesn’t seem to work.

Even though I have it as a rollOut function, the movie will just stop when the mouse is in the middle of the one button. which makes no sense.

Also, your first button which has a gotoAndPlay action keeps opening a browser window as if it were a getURL action. I tried changing that, but it doesn’t work :-\

that was an example link btn, it has a getURL action assigned.

I’ll try something else of just keep the slider spining at the top of a page after use

Thanks for the help

Ok, I got it to work… BUT

I used the mask as a movie clip to use the button action.

Since the mask is over your menu, you can’t use the menu links.

I will work on this later tonight (unless someone else figures it out before me), but I have to go now.