[F5]Need Help Whit Slide Menu!

i will try that!
i let you know if it work.

Thanks!

The script was a little bit different but it works!!!

Thank you!!!

i used this scrip:
onClipEvent (load) {
_x = 0;
speed = 5/1;
}
onClipEvent (enterFrame) {
endX = _root._xmouse-10;
if (_xmouse-10 > 0) speed=5/3;
else speed=5/1;
_x += (endX-_x)/speed;
}:beam:

Please show us when you’re done with your menu :slight_smile:

i will. But how can i send my fla or swf to this message?

In the reply window there is a section that says “Attach file:” your file must be small enough to post here though :slight_smile:

i wanted to thank you very much. You have been a big help!

I get an error when trying to open. You must be on a mac :-\

Try putting it in a .zip file and reattaching it.

Meanwhile, I am off to bed, it is 4:11am here :slight_smile:

well, good niight then! here it is 12:15 and i’m at my work, so.
here it is!

LOL… man, this thing is just causing trouble all over the place.

Your .zip file gives me an error saying “Cannot open file. Invalid archive”.

Are you looking for this menu?

http://www.flashkit.com/movies/Interfaces/Menus/Pop-down-Patrick_-7652/index.php

georgia

Hi guys,… Hi Dana

I was actually searching for the same script, i using an arrow instead of a slide, but in either case, how do u control the range?

to make it stop going further when it reaches the last (or the first) button…

Regards,

Tehsin

i load this menu into a site so your menu can’t go further than that.
is this what you mean?

Well what I am doing is my whole site is in flash, and the slider goes all around the site instead of staying within the menu boundaries…

here is what I mean -->

http://www.serindgroup.com/store/consoleStore2.html

but yea i am guessing yur menu is the only flash in the site, and the rest of the site is html?

Use an if statement.

if (this._y <= 100) {this._y = 100;}
if (this._y >= 350) {this._y = 350;}

This limits the _y position to 100 minimum and 350 maximum. Add this with the rest of your code in the onClipEvent (enterFrame).

Hey lostinbeta thanks alot

that worked great and i did same thing for the x values for the horizontal menu, it works beautifully…

Thanks,

Tehsin Bhayani

No problem :slight_smile: