Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Why Does It Stop? Inf Menu



Hello. I followed the tut about the infinite menu, altough all I'm interested is in the idea of having a stripe always passing something. I needed to change the orientation and instead of horizontal it's vertical. I changed the registration point, and with all the modifications the "menu" loops. But only when the mouse arrow is going up, because if I move the mouse arrow down, the "menu" doesn't move. Did this ever happened to any of you?Thanks for any help.



KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 08-31-2004, 07:03 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Why Does It Stop? Inf Menu
Hello. I followed the tut about the infinite menu, altough all I'm interested is in the idea of having a stripe always passing something.
I needed to change the orientation and instead of horizontal it's vertical.
I changed the registration point, and with all the modifications the "menu" loops. But only when the mouse arrow is going up, because if I move the mouse arrow down, the "menu" doesn't move.

Did this ever happened to any of you?
Thanks for any help.

Cant Stop Menu Animation
g'day all

im having trouble stopping animation in this movie. i want the opaque screen to slide in and out on mouse over and roll out. but i want the menu to slide out and stay put, not jump and out as it does in my movie.

any help appreciated

ozdude

Stop Command In Menu
Hello all,

I would like to create a scrolling marquee where the various text that is scrolling are the buttons.
This, I already know how to do but... how do I make the scrolling stop when the user hovers over one of the buttons?

Any info would be greatly appreciated.

Thanks!

@lex

Stop My Infinite Menu
Please can anyone help? I've created an infinite menu using the following code in a movie clip.

onClipEvent (load)
{
xcenter=384;
speed=1/10;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 65) _x=-573;
if (_x < -573) _x=65;
}

The menu works fine but I would like to stop it scrolling when the user takes the cursor away from the menu. I have buttons contained in the movie clip and have already tried some rollOver & rollOut script. That just stops the buttons from working altogether. I am using Flash MX.

Any help would be greatly appreciated.

Can You Stop My Infinite Menu
Please can anyone help? I've created an infinite menu using the following code in a movie clip.

onClipEvent (load)
{
xcenter=384;
speed=1/10;
}
onClipEvent (enterFrame)
{
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 65) _x=-573;
if (_x < -573) _x=65;
}

The menu works fine but I would like to stop it scrolling when the user takes the cursor away from the menu. I have buttons contained in the movie clip and have already tried some rollOver & rollOut script. That just stops the buttons from working altogether. I am using Flash MX.

Any help would be greatly appreciated.

[F8] CS3 Stop(); Command Ignored By Menu
Hi Guys,

Bit of a random one, but I hope that someone has an idea of what is going on. When my movie loads it gets to the first stop(); and stops. But when I use the navigation to move about, it ignores the stop on the landing frame and plays all the way through. This has only started happening since I upgraded to CS3. I have tested in FL8 / 9 and 9.45 with the same issue?

The majority of the content is loaded in from external swf or xml / txt files so it should all be behaving, but for some reason it's got a mind of it's own. I am sure that this is 100% user error, but I can't work out what I've done here.

As always, any help would be appreciated. The movie can be seen at http://www.fatepromotions.co.uk/arvella/arvella_v1.html and the source files are at http://www.onemarketingmonkey.co.uk/...sample_zip.zip if anyone has time to have a look it would be apprecited.

Regards,

Will

[F8] How Do You Stop The Right-click Menu
Yeah I've seen it on games before where when you right click on it you don't have the abilty to click "Play", "Loop", or use quality control.

How do I do this?

Can't Stop This Sliding Menu
Hi!

I'm making a slide menu that loads a xml file and creates buttons dynamically.
Another functionality is that is a sliding menu also, and I can't stop it. Can you help me please.

Heres goes the zip file, which contains .fla and .xml files

Thanks in advance!

How To Stop Infinite Menu?
Hi all!

I was just wondering what I have to ad to this as to make the menu stop when someone drags over it... and the start again when they roll out?!


Code:
onClipEvent (load){
xcenter=500;
speed=1/100;
}
onClipEvent (enterFrame){
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
}
onClipEvent (enterFrame){
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 0) _x=-1875;
if (_x < -1875) _x=0;
}

Sliding Menu Which Cannot Stop
Hi all!

I've tried out the tutorial by pom at
Sliding menu: http://www.kirupa.com/developer/flash5/slidingmenu.htm

and it was further developed under
http://www.kirupa.com/forum/showthread.php?t=74700

However, I cannot make the sliding menu to stop. If the user keeps on clicking next it will go on forever. Attached is the swf file regarding the problem.

many thanks!

Can't Stop This Sliding Menu
Hi!

I'm making a slide menu that loads a xml file and creates buttons dynamically.
Another functionality it has a sliding menu also, and I can't stop it. Can you help me please.

Heres goes the zip file, which contains .fla and .xml files

What I want to do is when I put the mouse at the top of the mask, the menu stops on the first option, and when I put the mous at the bottom, the menu stops on the last option.
Is it possible?

Thanks in advance!

http://www.marcogaspar.com/temp/slide_menu.zip

PS: URL fixed! Sorry!

How To Stop Infinite Menu?
Hi all!

I was just wondering what I have to ad to this as to make the menu stop when someone drags over it... and the start again when they roll out?!


Code:
onClipEvent (load){
xcenter=500;
speed=1/100;
}
onClipEvent (enterFrame){
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
}
onClipEvent (enterFrame){
var distance=_root._xmouse-xcenter;
_x+=(distance*speed);
if (_x > 0) _x=-1875;
if (_x < -1875) _x=0;
}

Sliding Menu With A Stop ?
on this site, there is a tutorial for a sliding menu:

http://www.kirupa.com/developer/mx/infinite.asp

I want to make something like that, but more like this:

http://www.sonypictures.com/movies/index_ie.html

They are sort of the same, but i want the menuslider to stop sliding, when the mouse rolls over. And i want it to start sliding again after some time, when the mouse has been away for a while.
Does anyone know what i have to add of code, to make it stop ? I might be able to make it move again after a while, by my self, but the simple thing, to make it stop, i cant :/
plz help me

Sliding Menu Which Cannot Stop
Hi all!

I've tried out the tutorial by pom at
Sliding menu: http://www.kirupa.com/developer/flash5/slidingmenu.htm

and it was further developed under
http://www.kirupa.com/forum/showthread.php?t=74700

However, I cannot make the sliding menu to stop. If the user keeps on clicking next it will go on forever. Attached is the swf file regarding the problem.

many thanks!

Stop Scroll Menu
Hi all I recent looked into doing a scoll menu and found this: http://www.kirupa.com/developer/mx/infinite.htm now the problem is I dont want it infinite I want it to stop when it gets to the last link can anyone help?? I want it to look something like this one: http://www.flashlevel.com/

anyway I know you guys can do it coz you always helped so thanks in advance
WiK

W i K


Menu Stop Following _xmouse
hey!
this code is from the horizontal menu is the fla's section:

difference = _xmouse - arrow._x;
arrow._x = arrow._x + (difference/delay);
menu._x = - arrow._x;

I'm wondering how I make it stop following _xmouse...
any suggestions? O_ô

thanks!!

Draggable Menu Stop Parameters
how can I tell a draggable menu to stop at certain parameters -- not over artwork, logo, etc... basically within a smaller rectangle withing my swf

thanks

Floating Menu Won't Stop At Ends?
Hi,
I'm trying to do a floating navigation bar at the top of the screen. I've combined three different scripts, so that when I roll out of the menu, it stops, instead of continuing to scroll. Problem is, I can't get it to stop when it reaches the end of the menu on both sides. It just keeps on scrolling, and gets lost off screen. Is there some way I can tell it to stop, or set speed to 0, or something like that? It's controlled by a follow mouse movie clip. The second frame of the follow mouse clip has this script

:drag = "/dragControl";
/:w = getProperty("/nav", _width);
/:xPos = getProperty(drag, _x);
/:yPos = getProperty(drag, _y);
// next 2 lines center the menu drag to the screen
/:yPos = /:yPos-50;
/:xPos = /:xPos-200;
// SET DRAG SPEED (inverse)
speed = 45;
setProperty ("/nav", _x, getProperty("/nav", _x)-(/:xPos/speed));
if (Number(getProperty("/nav", _x))<Number(-(/:w/2))) {
setProperty ("/nav", _x, _x+1);
} else if (Number(getProperty("/nav", _x))>0) {
setProperty ("/nav", _x, -/:w/2);
}

The movie clip is called "dragControl" and the menu is "nav"
I've been staring at this clip for a week and I don't know which way to go. I would really appreciate any thought, ideas! Thanks!
miakazi

How Can I Stop A Floating Menu On A Rollover?
I have a menu that floats around the screen counter to where the mouse is positioned. Within the menu movie clip there are four buttons housed in a single movie clip of their own. What I'm trying to do is stop the menu mc from floating when the mouse rolls over any part of the menu mc.

I can accomplish it on the main timeline by putting a stop action on the first frame of the menu mc instance but this makes my four buttons inactive.

Is there any way to adjust the commands within the floating menu timeline? Here is the code on the first frame of the menu MC:


xspan = getProperty("_root.menu", _x)-getProperty("_root.center", _x);
yspan = getProperty("_root.menu", _y)-getProperty("_root.center", _y);
setProperty(_root.menu.balls, _rotation, (360-xspan)+(360-yspan));

if ((xspan*xspan)>0) {
setProperty("", _x, Number(getProperty("_root.center", _x))+Number((xspan*0.9)));
xspan = xspan-1;
} else {
setProperty("", _x, getProperty("_root.center", _x));
}
if ((yspan*yspan)>0) {
setProperty("", _y, Number(getProperty("_root.center", _y))+Number((yspan*0.9)));
yspan = yspan-1;
} else {
setProperty("", _y, getProperty("_root.center", _y));
}
_x += (getProperty("_root.center", _x)-_root._xmouse)*.1;
_y += (getProperty("_root.center", _y)-_root._ymouse)*.1;


I'm not sure where to put a rollover conditional statement within the code. Any help would be greatly appreciated.

Here is a link to show you how it works without the rollover effect:

http://www.robpedini.com/floatingMenu.html

Dynamic Menu Won't Stop Scrolling HELP
I've built a menu for the bottom of my site that scrolls left or right depending on the mouse position, much like a panoramic slider.
The problem is I don't know how to get it to stop when the mouse leaves the menu area. As of now it continuosly scrolls at the speed of wherever the mouse left it. Please Help!!!!

Making A Menu Stop Scrolling? Please Help
notice this menu:

http://www.paperdenim.com/site/main.html

click on products/men's denim, and notice how the jeans stop scrolling when the mouse rolls out of that rectangle.

I need that badly for a site I'm doing.
site

here's the fla. Anybody got any idea how to do it?
fla

thanks in advance

How Stop My Menu From Reloading When I Go To A New Page
I have a flash menu on my site, and the site is a basic html site, so the entire site is not in flash. How can I make it so when a user clicks on a button in my dropdown menu, the menu stays in the current state that it is in and does not reload when the next html page is loaded? I have attached my menu fla file because it may be more clear as to what I want when you see it. Thanx in advance!

How Stop My Menu From Reloading When I Go To A New Page
I have a flash menu on my site, and the site is a basic html site, so the entire site is not in flash. How can I make it so when a user clicks on a button in my dropdown menu, the menu stays in the current state that it is in and does not reload when the next html page is loaded? I have attached my menu fla file because it may be more clear as to what I want when you see it. Thanx in advance!

How Stop My Menu From Reloading When I Go To A New Page
I have a flash menu on my site, and the site is a basic html site, so the entire site is not in flash. How can I make it so when a user clicks on a button in my dropdown menu, the menu stays in the current state that it is in and does not reload when the next html page is loaded? I have attached my menu fla file because it may be more clear as to what I want when you see it. Thanx in advance!

I Want To Stop Menu Highlighter From Going Outside Screen? (_x)
I'm sure it's an if statement dealing with the _x property. I tried a few times, but had no luck.

File is attached. Thanks!

How To Stop My Navigation Menu From Refreshing?
Hi my problem is that I have a flash navigation menu that links all my pages together. It animates and plays sound but what I want is it just animate and plays the sound once.
At the moment every time I click one of the navigation buttons to take me to a new page it refreshes and re-animates. How can I stop this?

The code im using to link the pages to the buttons is this:

on (rollOver) {
gotoAndPlay(2);
}
on (rollOut) {
gotoAndPlay(11);
}
on (release) {
getURL("index-2.html");
}

Infinity Menu With Easing Stop
Ok so I have a menu that I made from a couple of sources but I cant get it to stop moving on rollout. Basicaly its a infinite horizontal menu with a tsunami effect. On roll out I would like it to ease to a stop but i cant figuer that out.

a good example of what I would like it to do can be found here

http://www.ascentium.com/ like how there buttons follow eachother on the x axis. (how do they do that?)

But my horible mess can be found here (attached below)


Any responce is welcome My thanks in advance.

Infinity Menu With Easing Stop (cs3,AS2)
Ok so I have a menu that I made from a couple of sources but I cant get it to stop moving on rollout. Basicaly its a infinite horizontal menu with a tsunami effect. On roll out I would like it to ease to a stop but i cant figuer that out.

a good example of what I would like it to do can be found here

http://www.ascentium.com/ like how there buttons follow eachother on the x axis. (how do they do that?)

But my horible mess can be found here (attached below)


Any responce is welcome My thanks in advance.

Poms Inifinte Menu - But How Do I Get It To Stop?
Hi people!

I am using this following tutorial to create a mouse controlled menu.

http://www.kirupa.com/developer/mx/infinite.htm

I've used it a few times before and its a great tutorial, and I've seen it passed round this forum a few times - so well done Pom!

The only thing is, on this particualr occasion I really need the menu to stop at either end, rather than go round and around.

I'm guessing one of the first steps is to not duplicate the menu, but I'm not sure how to modify the code.

Can anybody help?

I really need your assistance - and it would be much appreciated

Deadhands

Stop A Sliding Menu On Rollout
Hi guys, new here, and kinda new to Flash,
i'm using MX for my build but the scroller has flash 4 in it as well.
a button on my main movie loads a menu.swf into an empty MC. the code for that scroller is as follows: its old code

dX = ../slider:_x-230;
ypos = ../slider:_y;
if (Number(ypos)<60) {
ypos = 60;
}
setProperty("", _x, _x-dX/14);

reset = _xscale/100*360;
if (Number(_x)>Number((230+Number(reset)))) {
setProperty("", _x, _x-(_width/2));
} else if (Number(_x)<Number((230-reset))) {
setProperty("", _x, Number(_x)+Number((_width/2)));
}

the scroller MC itself is only 460*60 but its loaded into the main movie which is 720*460. because the slider is set to ../slider the scroller responds and move accordingly to the mouse on the entire movie.
I wish the scroller to stop scrolling when the mouse is no longer near it.

so should code be put into the scroller or the main movie?
i can't seem to create a hittest to tell the Scroller to stop when the mouse has moved away.

any ideas?

Rotating Menu, How To Stop On Rollover?
On the attached swf you'll see my slowly rotating menu.

Each of the icons around the outside is a button which takes u to a specific page.

When the user rolls over the button I want the menu to stop rotating, and if the user moves the mouse away I want the menu to continue rotating.

Can someone help me with the a/s here? Should I be using mc instead of a button?

TIA

Infinite Menu Must Stop When Clicked
Hi everybody,

I desperately need some help. I have an infinite menu taken from the tutorial at kirupa. It needs to stop when the movie (which has button inside) when clicked.

The script i have now for the mc is. It slows down when i don't hover over the movie/buttons, but i want it completely to stop. Is this possible?

onClipEvent (load) {
var xcenter = 400, speed = .001, decel = .94, accel = 0;
}
onClipEvent (enterFrame) {
var distance = _root._xmouse-xcenter;
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
accel += distance*speed;
}
_x += accel *= decel;
if (_x>0) {
_x = -985;
} else if (_x<-985) {
_x = 0;
}
}
Please help
Thanks in advance

Stop A Scrolling Menu Mc On Rollout
Hello,
I downloaded the vertical menu from this site but I cant get it to stop scrolling on rollout. I know I need to make a invisible button and script it to stop the mc on rollout but am not sure where to place button and what exact script. Thanks ahead for your help

Stop Reloading Menu In Flash
Hey all! First off, great community from what i've seen and glad to be here.

Second, my problem. I have this website that has a flash menu with each link you click dropping down to a submenu. But when i click on an item in the said submenu i want it to stay open, meaning i want the down state to stay where it's at, so the user knows where they are currently at. Everything is on the timeline right now cuz i thought it would be easier that way. Please help and thank you so much in advance.

Infinite Menu Stop On Mouse Out.
Ok, I'm about to loose my mind, I hope there is someone out there who can give me some pointers.

So, i have an infinte menu (actionscript (AS2) posted bellow)

When the mouse moves out of the movieclip over or under, it stops. However if i drag the mouse to the right or left of it, it just keeps on speeding up.

Anyone got a clue?


onClipEvent (load) {
var xcenter = 280, speed = .01, decel = .90, accel = 0;

}
onClipEvent (enterFrame) {
var distance = _root._xmouse-xcenter;
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
accel += distance*speed;
}
_x += accel *= decel;
if (_x>0) {
_x = -2255;
} else if (_x<-2255) {
_x = 0;
}
}

Sliding Menu Doesn't Stop Where It Should
Hi,

I created a page using the sliding menu but I seem to have a problem with the way it stops on a movie clip. If I add too many movieclips (don't know if it's the number or the width of them causing the problem) the script doesn't stop right on the center of the movieclip. it looks like it doesn't stop smack down centered and it gets worse the more movieclips you add.

Can anyone help please? this is the page I made http://www.thenextmen.com/

If I add more links the content in the middle is not aligned. Every movieclip is the same size.

Thanks

Ben

Rotating Menu, How To Stop On Rollover?
On the attached swf you'll see my slowly rotating menu.

Each of the icons around the outside is a button which takes u to a specific page.

When the user rolls over the button I want the menu to stop rotating, and if the user moves the mouse away I want the menu to continue rotating.

Can someone help me with the a/s here? Should I be using mc instead of a button?

TIA

Slide Menu - Stop Motion
I have a question regarding the "Slide Menu" on ultrashock

Unfortunately in MX you can have rendered html text but it will not appear if there is a Mask over it. I did a layout with your slide menu and a mask for layout purposes which diminishes flash's ability to display the html text. =( Is it possible to have the html text appear after the 'Slide Menu' has stopped its motion (text is placed on a layer above the "slider" movieclip).

I was wondering if its possible to have the slider trigger on external movieclip(instance) once its motion stops? That way it could display the proper text according to which page/button the user selected.

Well if you have a quick solution I would appreciate your assistance. Flash is a bit flaky with html text. They claim 7 will read .css. I'll believe it after I test it! =P

How To Stop Flash Player's Dropdown Menu?
Hi...

What I'm interested in is that... if you click the 'third mouse button' in the Flash player, you get this dropdown menu, with options such as zoom, play, and 'about Macromedia' and stuff.

For some websites, when you click the third mouse button, you only get two options, instead of ALL others... How do we do that?

Stop Flash Menu Refreshing On New Cfm Page.
Hi I hope somebody can help me with this. I've designed a site (http://mfd.webdevzw.com) which a developer is in the process of finishing now, but she knows little about flash, and I'm not too hot on the actionscripting myself. I have this menu at the top, when the button is clicked it is supposed to spring on release, bounce and then stay down as the new page is accessed. Obviously it's refreshing though on the new page and you don't get the effect. Is there a way for the .swf to remember where it was? or not refresh on the new page. (we really don't want to use frames) thanks in advance.

Stop Flash Menu Refreshing On New Cfm Page?
Hi I hope somebody can help me with this. I've designed a site (http://mfd.webdevzw.com) which a developer is in the process of finishing now, but she knows little about flash, and I'm not too hot on the actionscripting myself. I have this menu at the top, when the button is clicked it is supposed to spring on release, bounce and then stay down as the new page is accessed. Obviously it's refreshing though on the new page and you don't get the effect. Is there a way for the .swf to remember where it was? or not refresh on the new page. (we really don't want to use frames) thanks in advance.

Flash Menu With Follow Mouse (and Stop)
i need help to do this
menu
I already did something similar but i can't make the "pointer" stop whe it's get to the end.
someone please hepl me!.
i raelly apreciate it.
i'm looking for a master XD

anybody there?

PD: Excuse my poor english

How To Make Scroller Stop When Menu Is Active
hi,

in my flash file i use a movieclip that scrolls images controlled by the mouse. there is a variable speed, and if it set to 0, the scroller is stopped.

so far it works fine.
but i also have a dropdown menu which overlaps the scroll area when it is unfolded. and so, if i want to navigate, the images keep quickly scrolling around, which is rather annoying.
the menu is inside a movie clip.

i think i'll have to set the speed variable to 0 when the mouse rolls over the space that the menu occupies.

can you tell me if it works that way and how i have to actionscript that?

thanks a lot
jo

Stop Menu Buttons From Advancing On 2nd Click
Here my problem. The menu button takes you to the new page fine. Once you are on that page if you click that same button. It advances the timeline.

Below is my code that is in the actions frame that right above the first page. How do I fix this problem?


//apply button reflection style //
var r9:BitmapReflection = new BitmapReflection(famho,style);
addChild(r9);
var r10:BitmapReflection = new BitmapReflection(fampho,style);
addChild(r10);
var r11:BitmapReflection = new BitmapReflection(famvid,style);
addChild(r11);
var r12:BitmapReflection = new BitmapReflection(fameve,style);
addChild(r12);
var r13:BitmapReflection = new BitmapReflection(famcon,style);
addChild(r13);
var r14:BitmapReflection = new BitmapReflection(fam20,style);
addChild(r14);


// define the button ...listen for click //
famho.addEventListener(MouseEvent.CLICK,gohomes);
fampho.addEventListener(MouseEvent.CLICK,gophoto);
fameve.addEventListener(MouseEvent.CLICK,goevents) ;
famvid.addEventListener(MouseEvent.CLICK,govideo);
fam20.addEventListener(MouseEvent.CLICK,gonextyear );
famcon.addEventListener(MouseEvent.CLICK,gocontact );


// define moving to next page function //
function gohomes(e:MouseEvent):void
{
gotoAndPlay("f1");
}
function gophoto(e:MouseEvent):void
{
gotoAndPlay("f2");
}
function govideo(e:MouseEvent):void
{
gotoAndPlay("f3");
}
function gonextyear(e:MouseEvent):void
{
gotoAndPlay("f4");
}
function goevents(e:MouseEvent):void
{
gotoAndPlay("f5");
}
function gocontact(e:MouseEvent):void
{
gotoAndPlay("f6");
}



//home button
famho.addEventListener(MouseEvent.MOUSE_OVER,onRol lover);
famho.addEventListener(MouseEvent.MOUSE_OUT,onRoll out);

famho.buttonMode = true;
famho.mouseChildren = false;

//photo button
fampho.addEventListener(MouseEvent.MOUSE_OUT,onRol lout);
fampho.addEventListener(MouseEvent.MOUSE_OVER,onRo llover);

fampho.buttonMode = true;
fampho.mouseChildren = false;

//video button
famvid.addEventListener(MouseEvent.MOUSE_OVER,onRo llover);
famvid.addEventListener(MouseEvent.MOUSE_OUT,onRol lout);

famvid.buttonMode = true;
famvid.mouseChildren = false;

//2009 button
fam20.addEventListener(MouseEvent.MOUSE_OVER,onRol lover);
fam20.addEventListener(MouseEvent.MOUSE_OUT,onRoll out);

fam20.buttonMode = true;
fam20.mouseChildren = false;

//events button
fameve.addEventListener(MouseEvent.MOUSE_OUT,onRol lout);
fameve.addEventListener(MouseEvent.MOUSE_OVER,onRo llover);

fameve.buttonMode = true;
fameve.mouseChildren = false;

//contacts button
famcon.addEventListener(MouseEvent.MOUSE_OUT,onRol lout);
famcon.addEventListener(MouseEvent.MOUSE_OVER,onRo llover);

famcon.buttonMode = true;
famcon.mouseChildren = false;

Rotating Menu/Panels. How To Stop Them OnRelease?
Hi all,
I got this script from a tutorial site (http://www.actionscript.org/showMovie.php?id=1284). It's a 3D rotating menu/panels, reacting to mouse movement. On mouse click, it will expand to a certain size, but I can't stop the rotation. How can I stop the rotation with the specified panel facing front when mouse release, and return to rotating and its original size upon second mouse click??

And, I notice it's a little buggy, the panel shink to a size smaller than original size when you do a quick click while it's still expanding. :S

I don't know how I can attach the codes here because all the codes are all over the instance and frames. Perhaps you can check out the original tutorial http://www.actionscript.org/showMovie.php?id=1284

Many thanks!! I really appreciated it!

How To Get A Start/stop Menu Working For Music
i have a song for every page and i want to know how to get a start/stop icon, and for it to work properly

How To Make Scroller Stop When Menu Is Active
hi,

in my flash file i use a movieclip that scrolls images controlled by the mouse. there is a variable speed, and if it set to 0, the scroller is stopped.

so far it works fine.
but i also have a dropdown menu which overlaps the scroll area when it is unfolded. and so, if i want to navigate, the images keep quickly scrolling around, which is rather annoying.
the menu is inside a movie clip.

i think i'll have to set the speed variable to 0 when the mouse rolls over the space that the menu occupies.

can you tell me if it works that way and how i have to actionscript that?

thanks a lot
jo

Infinite Menu Stop And Move In Place Help
I know there alot of Infinite menu threads, but I didn't find any that addresses my issue.

I am trying to stop an infinite menu and have it go to the exact place each time a photo is clicked. I think the problem is coming when its close to the "looping" point, and a button is clicked the menu starts looping non-stop.

This is what I have so far: test_9

This is an idea of what I am trying to do: http://www.octopusaccessories.dk/

Any help or pointing in the right direction would help, thanks!

doug

Rotating Menu/Panels. How To Stop Them OnRelease?
Hi all,
I got this scripts from a tutorial site. It's a 3D rotating menu/panels, reacting to the mouse movement. On mouse click, it will expand to a certain size, but I can't stop the rotation. How can I stop the rotation with the specified panel facing front when mouse release, and return to rotating and its original size upon second mouse click??

And, I notice it's a little buggy, sometimes the panel shink to a smaller size. :S

Help, pleaasse! Many thanks!!

Copyright © 2005-08 www.BigResource.com, All rights reserved