Infinite Menu
I've followed the tut. on kirupa's site to create the infinite menu. Everthing works, but i can't manage to create actually working buttons out of that inf menu?? It's probably something stupid, but i seem to be looking over it... What should i do??
(sorry about my spelling, but I'm Dutch..)
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX
Posted on: 02-20-2003, 01:21 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Infinite Menu...infinite Madness
Hi there
I’m making a gallery, with a few thumbnails of my Illustrations and I’m using the infinite menu.
It works great, but there’s one thing that bothers me, the fact that it keeps on moving when you’re not scrolling over it, it’s distracting. I would like to have it ease back to 0 when you move your mouse outside its boundaries, I’m loading the .swf into the main interface and I want it to remain visible, but only to scroll when you move inside its boundaries, other wise it’s running wild even when you’re using the rest of the interface.
This is the code for the infinite menu, as it is now:
onClipEvent (load) {
xcenter = 513;
speed = 1/10.5;
}
onClipEvent (enterFrame) {
var distance =_root._xmouse-xcenter;
_x -= (distance*speed);
if (_x>0) {
_x = -1109;
}
if (_x<-1109) {
_x = 0;
}
}
Can someone pleez help me solve this, I’m going slightly mad…Thanks
Infinite Menu And Menu With Slider
Hello flashers, i got two questions, if anyone could help me please, i tried to do the infinite menu tutorial and it works, but it results that mine is in a movie that is loaded into another one, and i dont know how to make it recognize the movement of the cursor only in the loaded movie area, and stop working if i go over the root movie. what do i have to define the active area. Well thats one, the other is that i tried to do the menu with slider tutorial, it work great, but how can i make it so that when a movie loaded with one of that buttons, is loaded, the slider stays below that button, that if i go over other button, it slides to it, but on a rollout, gets back to the button corresponding to the movie loaded. I hope i made myself clear enough, i will greatly accept any idea. on that second one, i tried to do the if frame loaded, so that it veryfies if one of the loaded movies is there, and then use a on rollout, but i frankly dont know. And if someone could give me the name of a good book to learn actionscript from scratch, i am a graphic designer, know a lot about photoshop and other tools, but i want to learn flash, and some programing. well thats it for this first message. thanks
Infinite Menu
Hey everyone i have this infinite menu that works great just like in the tutorial on kirupa. I was wondering if it was possible to alter the code so that when you rolloff the menu eases to a stop instead of abruptly stopping would that be a pain to do?
onClipEvent (load) {
xcenter = 480;
speed = 1/10;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
var distance = _root._xmouse-xcenter;
_x += (distance*speed);
_x>0 ? _x=-697 : _x<-697 ? _x=0 : null;
}
}
Any help would be great.
Thanks,
Chris
Help On INFINITE MENU
Hello
I tried to apply this INFINITE MENU trick found on this thread http://www.kirupa.com/developer/mx/infinite.htm
Now instead of 5 buttons, I made an animation with 30 buttons on it and the movice dimension is 800x600
Since I dont know advance ActioinScripting, I just tried to adjust the values on the script on that thread and copied it to mine. It worked somehow but not perfect.
Please download the file on this linke
http://www.talisaychat.com/main/temp...animation2.fla
Infinite Menu Changes
I found a menu that I found more than efficient for my personal flash movie I am creating. I was able to change the background brightness, transparency and everything myself to how I want it, however, I'm not sure how to go about editing the text in each button to customize it as my own. Help anyone?
Infinite Menu
Hey, I did the tutorial of the Infinite Menu, and now
I am building something like that for a site, how can
I change the code so that it only goes one way, so
that it doesn't respond the the button, for example
it only moves to the left?
I hope you guys can help me out.
The Infinite Menu
I had download The Infinite Menu and modify myself, because my movie clip width is bigger than the dimension (working enviroment in flash MX) so all my buttons doesn't sucessful. I had attach a fla file here can anyone please help me to solve this problem?
Please open the fla file and click on the OUR PRODUCTS button and you will understand what I mean here. Thank you very much !
Not So Infinite Menu
sup all, i was looking at the infinite menu tutorial, but what do you do if you want to make the menu to stop at the end and not go on forever? like the menu scrolls to the left till it hits the beginning of the menu and scrolls right and stops once it hits the end of the menu.
thanks
Different Infinite Menu
i saw the tutorial for the infinite menu on this site and it gave me the idea to try to make a new altered one. what would i have to do to create an infinite menu with a total of 10 thumbnails that were all buttons that you could scroll through left and right the same way as the infinite menu on this site, however, only 1 thumbnail at a time would be visible...(kind of like an infinite menu only using masks?) i know sounds messed up but if anyone can think of a way to do this it would rock
Infinite Menu
hi, i have tried the infinite menu tutorial. I can get the menu to scroll but i am having trouble making the buttons work as well..... can anyone help?
Infinite Menu
Hi!!!
for some reason when I downloaded the partial code of the "infinite menu" tutorial i get an error of unexpected file format!
I´m using Flash 5 but i already worked with some mx files and they did work.
Does anybody have the .fla file????
thanks.
Andrea.
Infinite Menu Help
Which part of the AS do I change to make the menu scroll slower?
Code:
onClipEvent (load)
{
xcenter=150;
speed=1/10;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
}
Infinite Menu Help
I followed the tutorial and have no problems setting it up. My problem is that my movie width is 760 and my menu of logos is 1700. Is there a way to get it to work properly with this size? Is there another method other than the menu tutorial here that would help with this issue? Thank you.
Infinite Menu Help
Hi all,
Can anyone help? I've created an infinite menu of scrolling photos that is loaded into a larger Flash file. I need to make the action in the infinite menu stop (so the photos stay frozen in their current position) when the cursor leaves the boundary of the menu. As it is now, the menu continues to react to the mouse position no matter where it is in the larger Flash file.
The action script I've used for the menu is:
onClipEvent (load){
xcenter=557.5;
speed=1/20;
}
onClipEvent (enterFrame){
var distance=_root._xmouse-xcenter;
_x-=(distance*speed);
if (_x > 0) _x=-2250;
if (_x < -2250) _x=0;
}
Any help is greatly appreciated!
Ryan
Infinite Menu
Hello again!
I have been trying out this tutorial and it works fine.
http://www.kirupa.com/developer/mx/infinite.htm
I was wondering is there a way to increase the center opoint of the menu so that the user has some sort of movement of the mouse without it moving on and the person missing the button they want.
Infinite Menu Help
Hey Peeps!
I've followed this tutorial from this site
Infinite Menu
but what I want to do is control this infinite menu by using 2 buttons.
one button to send the menu to the left,
and the other to send it to the right.
instaed of moving the mouse to the left & to the right.
Is this possible? if so coud someone help me with this.
Cheers
Help With The Infinite Menu Please?
hey,
i'm a flash newbie and im trying to accomodate the infinite menu tutorial to my site, except i am using images, instead of words. i cant seem to get the 'menu' to scroll right. help please? greatly appreciated. the link below is where the source file is. thanks again!!
http://www.axismediainc.us/testimage/pic scroller.fla
Infinite Menu
I have made a infinte menu following the tutorial "The Infinite Menu by ilyas usal" but I dont want the menu to follow the mouse direction or speed up when you move tghe mouse, I just want it to move in on direction and with constant speed.
Thanks for help!!!
Infinite Menu
so... i have included my fla file. i am fairly certian the script is correct, but i might have it placed in the wrong spot. could someone give it a gander and purhaps see something i am not. good day-
Infinite Menu Can't Run
Hello kirupa people ,
i have one problem with my infinite menu , he can't run ! i have follow the kirupa tutorial but can't run
can y help me ?
i post my fla
Infinite Menu Help
the setup for my page, is i have the main page and content in home.swf and in that i load infinitemenu.swf into a container at the bottom of the page and everything works properly, but the infintie menu moves according to where the user's mouse is anywhere on the home.swf and i want it to only to move accordingly just when the menu is moused over, so that it doesnt move when you are cruising around the rest of the page. I suspect i have to have some kind of restraints on the _y.mouse variable but then again i have no idea. Thanks for any help you can give.
Infinite Menu
H-E-L-P!!
Im using the infinite menu tute from Kirupa and it skips a second when it goes to the second clip....here's the .fla and .swf PLEASE give it a look and let me know where I'm going wrong...
~ Seretha
See it at:
http://www.cyberwebs.org/test/infinite.html
Download my .fla at:
http://www.cyberwebs.org/test/infinite.fla
Infinite Menu With XML
Is it posible? I ve tried with no result. Im workin with XML thums. The problem is that when i try to duplicate the movie i have to put a different name, and that is useless, because XML needs that name to load. Any Help?
Help With 'The Infinite Menu'
Hi all
I’ve made the 'The Infinite Menu' from the tutorial on this site @ http://www.kirupa.com/developer/mx/infinite.htm , only problem is that when I add a goto action on one of the buttons to go to another frame in the same scene it doesn’t work.
I’m kind of new to flash so please don’t laugh!!
Any help is gratefully appreciated
Infinite Menu
Hey everyone i was just using the infinte menu tut and Im trying to make it so that when it first loads up the menu is completely still and doesnt start moving unless you rollover. When it starts now its just on this looping roll what do i change in the code to make it stay still:
onClipEvent (load)
{
xcenter=150;
speed=1/10;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 0) _x=-300;
if (_x < -300) _x=0;
}
Thanks,
Chris
Infinite Menu
Hey everyone i have this infinite menu that works great just like in the tutorial I was wondering if it was possible to alter the code so that when you rolloff the menu eases to a stop instead of abruptly stopping would that be a pain to do?
onClipEvent (load) {
xcenter = 480;
speed = 1/10;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
var distance = _root._xmouse-xcenter;
_x += (distance*speed);
_x>0 ? _x=-697 : _x<-697 ? _x=0 : null;
}
}
Any help would be great.
Thanks,
Chris
Infinite Menu
Hey all,
I am trying to build this page using the infinite menu so that when the button is clicked, the scrolling will stop. However, what i really want is when the button is clicked, i want that specific button to scroll into the middle. Right now, the movie just stops as soon as it has been clicked. So is my request possible or hard to accomplish??
thanks in advance.
The Infinite Menu
I have a movie clip that goes for 352 frames, and is actually a 360 degree room that swings round to the right.
i want to be able to apply something like the infinite menu to play through the frames both to the right and to the left (by running thru the movie backwardly). is this possible and if so, how??
i'm relatively new to flash, so if you can help me please try to keep it in simple words or describe what you mean!
thankyou so much if you can help me!!!!
Not Infinite Menu
I ´ve learned how to do an infinite menu, but for my project, it would be better if the menu stopped at the end instead.
I´ve read about infinite menu on
http://www.kirupa.com/developer/mx/infinite.htm
I´ve searched around kirupa but found nothing.
Any help?
Infinite Menu Help
I have recently found the infinite menu tutorial and it dosnt work. When I go to the left it chops back to the begening. I added the secont movie clip butit still chops, the stage is 700 by 700 if anyone see somthing wrong please help me.
PHP Code:
onClipEvent (load){ xcenter=350; speed=1/10;}onClipEvent (enterFrame){ var distance=_root._xmouse-xcenter; _x+=(distance*speed); if (_x > 0) _x=-700; if (_x < -700) _x=0;}
The Infinite Menu By Pom?
I did the tutorial from Pom "The Infinite Menu" http://www.kirupa.com/developer/mx/infinite.htm wich I enjoyed very much
What I would like to know is how I create this effect without the mouse behaviour and how do I accomplish it that when the movie reaches it's destination point _x=-300 that it reverse (I mean moving in the other direction so it's moving from right to left and left to right and so on)
Thank you all in advance
The Infinite Menu
i tryed the tutoria lfor this but how do i add the buttons so that if someone click the image i put in there goes to that point in my time frame
this is the link if you dont' understand what i am talking about, it is hard to understand me somethimes
http://www.kirupa.com/developer/mx/infinite.htm
thanks
Infinite Menu
Hey,
I've been working with the infinite menu tutorial. When I completed the tutorial, it worked fine. But now that I'm trying to customise it to my own specs, it doesn't work.
Here's the FLA.. can anyone help?
http://www.davidbardo.com/infinite.fla
Thanks!
Ben
Infinite Menu
Hi!
I am trying to work out something with this tutorial:
http://www.kirupa.com/developer/mx/infinite.htm
I have one movieclip (menu) that is made by 6 pictures x 100 pixels = 600 pixels. I have repeated it into menu_general. So as I figure it out it is 1200 pixels as a totall.
This is the code that I have assigned to the menu_general movieclip:
Code:
onClipEvent (load)
{
xcenter=600;
speed=20/400;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 0) _x=-1200;
if (_x < -1200) _x=0;
}
The result can be viewed here:
http://www.redpoint.se/infinite/
It doesn't work as it should. Can anyone please tell me what I have done wrong here?
I have attached my scroll.fla file if someone feels like taking a look at it.
Would be nice with some help!
JoakimN
Infinite Menu Help?
Hi all
I'm trying to convert this infinite menu tutorial to have a constant speed but can't work out how?
Can anyone point this out? My actionscript is awful
Thanks in advance...
'Infinite Menu' With AS3?
Hey everyone- long time reader, first time poster
so my questions is this:
How do I translate the AS2 code for the Infinite loop menu into AS3??
http://www.kirupa.com/developer/mx/infinite.htm
in AS2, for the example on kirupa the code is:
onClipEvent (load)
{
xcenter=150;
speed=1/10;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
}
but I'm really lost as to how to turn this into an eventlisterner or class or whatever AS3 I need..(can you tell Ive only JUSt started learning AS3 )
anyone got an idea?
many thanks!
-L
I Need Some Help With The Infinite Menu
i have completed the great tutorial on the infinite menu !!
i have made and assingned buttons to go to specific scenes, but when clicked they don't go to the wanted page.
please help me emergency!!!
Help On INFINITE MENU
Hello
I tried to apply this INFINITE MENU trick found on this thread http://www.kirupa.com/developer/mx/infinite.htm
Now instead of 5 buttons, I made an animation with 30 buttons on it and the movice dimension is 800x600
Since I dont know advance ActioinScripting, I just tried to adjust the values on the script on that thread and copied it to mine. It worked somehow but not perfect.
Please download the file on this linke
http://www.talisaychat.com/main/temp...animation2.fla
Infinite Menu Changes
I found a menu that I found more than efficient for my personal flash movie I am creating. I was able to change the background brightness, transparency and everything myself to how I want it, however, I'm not sure how to go about editing the text in each button to customize it as my own. Help anyone?
Infinite Menu
Hey, I did the tutorial of the Infinite Menu, and now
I am building something like that for a site, how can
I change the code so that it only goes one way, so
that it doesn't respond the the button, for example
it only moves to the left?
I hope you guys can help me out.
The Infinite Menu
I had download The Infinite Menu and modify myself, because my movie clip width is bigger than the dimension (working enviroment in flash MX) so all my buttons doesn't sucessful. I had attach a fla file here can anyone please help me to solve this problem?
Please open the fla file and click on the OUR PRODUCTS button and you will understand what I mean here. Thank you very much !
Not So Infinite Menu
sup all, i was looking at the infinite menu tutorial, but what do you do if you want to make the menu to stop at the end and not go on forever? like the menu scrolls to the left till it hits the beginning of the menu and scrolls right and stops once it hits the end of the menu.
thanks
Different Infinite Menu
i saw the tutorial for the infinite menu on this site and it gave me the idea to try to make a new altered one. what would i have to do to create an infinite menu with a total of 10 thumbnails that were all buttons that you could scroll through left and right the same way as the infinite menu on this site, however, only 1 thumbnail at a time would be visible...(kind of like an infinite menu only using masks?) i know sounds messed up but if anyone can think of a way to do this it would rock
Infinite Menu
hi, i have tried the infinite menu tutorial. I can get the menu to scroll but i am having trouble making the buttons work as well..... can anyone help?
Infinite Menu Help
Which part of the AS do I change to make the menu scroll slower?
Code:
onClipEvent (load)
{
xcenter=150;
speed=1/10;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
}
Infinite Menu Help
I followed the tutorial and have no problems setting it up. My problem is that my movie width is 760 and my menu of logos is 1700. Is there a way to get it to work properly with this size? Is there another method other than the menu tutorial here that would help with this issue? Thank you.
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.
|