ActionScript 2.0 :: [F8] Filters Affect Rollover - Clicked Button To Grow And Stay Larger Than The Other Buttons

Oct 24, 2006

The problem with this version is that i want the clicked button to grow and stay larger than the other buttons. And when you click another button, that button becomes large and the last clicked button gets smaller. I've figured out how to do that, which you will see in a moment, but that is not my problem. Now, with this version I am actually using a proximity formula for the rollovers instead of actual rollOver handlers, and the buttons seem to respond well. Here is the modified version of the nav, using rollOver handlers and growing and shrinking the appropriate buttons:[URL]

As you can see here, this version seems to be working fine as long as you are rolling over the buttons fairly quickly. But, if you put your mouse right on the edge of the button, I think you'll see that the button goes into some sort of pulsing action, larger and smaller. It may stop after a moment or it may not. In an effort to find the problem, i removed each property (alpha,blur,bevel, etc) one at a time and basically figured out that mainly the blur filter is causing the button to act erratically. Without the blur filter, it works just fine.

I'm wondering if anyone else has had this sort of problem and if there is a solution to it (besides getting rid of the blur ). I could go back to using proximity for the rollovers, but i had a hard time keeping the buttons enlarged when you roll away from them. That's why i went back to using onRollOver instead. Sorry for the long and rambling post, but sometimes it's hard to explain certain things in just a few words..

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Rollover Button To Stay 'on' When Clicked

Jan 13, 2010

I have a menu with five items in it. Every menu item is two words, both grey, and is a button. When the button is rolled over the second word goes red. So far, so easy. However, when the button is clicked and sends the timeline to the correct frame label, I want that button to stay in its grey/red state, in other words its rollover state. Is it possible to label a frame inside a button timeline, in the same way as one would in a movie clip, and then send the play head to that?
 
Or maybe there are some really easy and obvious solutions that I haven't seen that I would be grateful to hear about.

View 8 Replies

ActionScript 2.0 :: Buttons To Stay Orange Once Clicked And Only Roll Out Back To Grey When The User Has Clicked On Another Button In The List

Feb 7, 2007

I've got about 6 buttons laid out, one on top of the other in a list format. In their normal state the buttons are grey in colour, when I rollover them, the buttons flash and turn to orange. Now, what I need to happen is this: I want the buttons to stay orange once clicked and only roll out back to grey when the user has clicked on another button in the list. I've been told that the best way to do this is via adding a listener, however I am a little unsure as to how to go about this. I've checked the flash help file and have a basic understanding of how listeners work...but can't really wrap my head around applying it to this situation. Perhaps I will need to have all the buttons as separate broadcasters?

View 2 Replies

ActionScript 2.0 :: Make The Clicked Button Stay On The Rollover State In The Movie

Feb 1, 2006

i am working on a flash project i want to make the clicked button stay on the rollover state in the movie

see the fla file, i am using flash 8 pro

i was thinking to make frame by frame but i have many many buttons

View 2 Replies

ActionScript 2.0 :: Make On Rollover Effect Stay When It Is Clicked?

Jul 20, 2005

How can I make my on rollover effect stay when it is clicked? So for example if I click on the home button stays highlighted or in this case keeps the on(rollover) frame selected until another link is clicked. An example would be the main nav on [URL]

View 4 Replies

ActionScript 2.0 :: Buttons That Stay Clicked Until Another Is Clicked?

Feb 8, 2011

I haven't been able to find a solution that fits my project. I am working on a 50 state map, where I need each state to stay down once clicked, but go up when any other state is clicked. [code]...

View 9 Replies

Professional :: Creating Button To Grow Slightly When Rollover

Oct 6, 2011

I'm basically looking to create some buttons that once 'rollover'd' grow slightly, and shrink again once 'rollout'd' and I am hoping to add a little bounce (or I believe its called elastic) once it snaps back. I am a beginner, but have created buttons before with rollover, rollout etc but arent sure how to create the motion of it growing in the button. (I am using Flash CS4 and was intending AS3, but happy to use whatever is recommended for this.) I did use this site tutorial [URL], but I wasn't sure which AS or CS it was using. Everything worked but the motion of the growing.

View 8 Replies

ActionScript 2.0 :: Write A Class That When Rollover A Button It Would Grow And The Others Would Shrink

Mar 16, 2008

i'm an AS2 novice but I wanted to write a class that when you rollover a button it would grow and the others would shrink! At this point it's only missing the other buttons to shrink cause I have no Idea on how to refer them in the code!

[Code]...

View 1 Replies

ActionScript 2.0 :: Active Button - Stay The Rollon Color After It's Clicked And Then The Rolloff Color When Another Button Is Clicked?

Sep 29, 2008

How can I make it stay the rollon color after it's clicked and then the rolloff color when another button is clicked?

[Code]...

View 7 Replies

ActionScript 2.0 :: Making Animated Buttons Stay Clicked?

Nov 24, 2009

I have a website with a very simple code that gives all the buttons in the menu an animated rollover and rollout state. When the buttons are clicked, I have a movie clip with all the content which goes to a specific frame label depending on which button is clicked. Very simple, no problems there. But what I can't figure out how to do, is to add a variable so that when each button is clicked, it stays in the over state until another button is clicked (at which point I'd like it to go to the out state, while the new button would go to the over state.)I found several examples of codes that do this, but I can't figure out how to modify them so that when a button is clicked, it also goes to a specific frame label in the content movie clip, so that the content for each section can be displayed the same way is in the original version.[code]

View 12 Replies

ActionScript 2.0 :: Series Of MovieClip Buttons - Stay Downstate When Clicked?

Aug 27, 2009

I'm using some classes that apply to a series of movieclip buttons I found. I'm using the classes to get the buttons to rollover and when clicked stay in the down state, when another is clicked the previous button goes back to up state. The rollover works fine however it doesn't stay in down state when clicked.

Here is the code I have so far, I'm also open for substitute classes that will do the same thing.
ActionScript Code:
class ButtonClass extends MovieClip {
public var onPressDown:Function;
public function ButtonClass() {
this.gotoAndStop(1);
[Code] .....

View 0 Replies

ActionScript 2.0 :: Nav Button States - Button To Stay In It's Active State Until Another Button Is Clicked

Dec 17, 2004

I have a menu with five nav buttons (atcually MovieClips). Each has three frame labels: "on", "stay", and "off". The rollover and rollout animations play flawlessly, but I'm at a loss as to how to give each button a sticky "active" state. I'd like the button to stay in it's active state until another button is clicked, then I would like it to play it's "off" animation. Each MC has this code:

[Code]...

View 2 Replies

Get A Down Button To Stay Down After It Is Clicked?

Jan 21, 2011

How do I get a down button to stay down after it is clicked.

View 7 Replies

ActionScript 2.0 :: Movie Clip Button Up-state, Stay Up Until Clicked On Other Button?

Feb 23, 2006

how to keep a Movieclip Btn 'Over State' to stay in the over position until another button is clicked?

View 1 Replies

Button Is Clicked Make It Stay In Down Mode?

Mar 15, 2011

This is hard to explain. Basically the user needs to choose their sex and type in their name then press the continue button. The gender selection is a bathroom identificationesque picture of a girl and boy. The boy is blue and the girl is pink. When you roll over the boy, it becomes a lighter blue and when you roll over the girl it becomes a lighter boy.

What I don't know how to do is that when you click on the boy, it stays a lighter blue, and lighter pink for the girl. That way they can see what selection they made. Also, when you click the boy then click the girl, the girl will become highlighted and the boy no longer will be (so you can only choose one gender). How do I do this? And how do I tell the program to store the info for later use? (when gender is important). I know that this type of action is used often in games so hopefully someone can help me.

View 2 Replies

ActionScript 2.0 :: MovieClip Button Stay Down When Clicked

May 21, 2007

Ok, I've search through the forums but none of the posts seem to work for me. I've got 4 buttons that each have an onRollOver, onRollOut, and onRelease function on them. I would like the onRollOver state to stay in place after the user clicks the button they're over. Then, when the user clicks on a different button, that buttons down state sticks, and the previous button's state unsticks and goes to the rollout function. I've read through and tried this thread:[URL]

View 5 Replies

ActionScript 3.0 :: Make A Button Stay Down State After Been Clicked?

May 11, 2010

How to make a button stay down state after been clicked?
 
stop();
var ldr:Loader = new Loader();
ldr.x = 300;

[Code].....

View 3 Replies

ActionScript 3.0 :: Grid Slider Gallery - Grow Larger And Make The Other Items A Little Smaller

Jun 24, 2010

im trying to create a grid gallery that when you rollover an item it grows larger and makes the other items a little smaller, and moves them to compensate for the larger image and on rollout it shrinks to its original size, and so does the other items. if someone could point me in the right direction (tutorials, etc.) or how i would go about build it,

View 1 Replies

ActionScript 3.0 :: Make A Button Stay In The Roll Over State When Clicked?

Jun 22, 2008

how to make a button stay in the down position in CS3, Actionscript 3.0?

I have 3 buttons, each with the same roll over state. What I'd like to do is when the button is clicked, it remains in the roll over state until something else happens.

View 5 Replies

IDE :: Rollover Menu Buttons - Rollover A Button That The Whole Button Image Enlarges And Moves In Front Of The Other?

Mar 26, 2010

I'm currently working on a flashsite and are trying to figure out rollover menu buttons. The site has 6 menu buttons and are placed next to each other. I want to put a rollover action on the buttons, that when you rollover a button that the whole button image enlarges and moves in front of the other.

View 1 Replies

Making Image Grow / Shrink When Clicked On

Aug 5, 2009

I am trying to make an interactive slideshow. I have nine pictures thumbnail size and I want it so that when you click on one of them they will grow, then when you click again it will shrink.

View 3 Replies

ActionScript 2.0 :: Button Press - Keep The Rollover State Active If Clicked

Aug 22, 2008

I want to have a button with a rollover state that is different that the out state. I got that part, but I also want to keep the rollover state active if clicked. I can think of a couple ways to do it but I'm certain there is an easier way to do it. I have about 8 buttons and when I click on on I want that to stay in the rollover state, then when I click on another one I want the first to go back to the out state and the new one that I clicked to go to the over state and stay there.

View 3 Replies

ActionScript 3.0 :: Removing MovieClip Buttons - GALLERY Button To Stay On The Stage At All Times

Sep 24, 2009

I have 5 movieClip buttons. I want the GALLERY button to stay on the stage at all times, "which it does" but i want when the user clicks on 1 of the other 4 buttons for the remaining 3 to disappear. Example... when the user clicks on the KIDS button, the COUPLES, PORTRAITS AND BELLIES buttons disappear, or when the user clicks on COUPLES, for the KIDS, PORTRAITS AND BELLIES buttons to disappear, and so on.

[Code]....

View 4 Replies

IDE :: Get The Colour To Stay Red When It's Clicked?

Nov 21, 2009

I have buttons with black text. The buttons (not the text) change colour to red when you rollover them. I can't seem to work out how to get the colour to stay red when it's clicked. Do I make a duplicate symbol which is already red to replace it when clicked? And I'm also unsure of the actions I'm supposed to use if any??

View 1 Replies

ActionScript 2.0 :: Replacing Object With Larger Version When Mouse Clicked

Oct 6, 2010

I am creating a fish-eat-fish movie. I created a fish (pike1) that follows the mouse. Another fish (Chub) is set to disappear when clicked. What I want to do is to have pike1 grow larger (either by just growing larger or having pike1 disappear and be replaced on mouse click by a larger pike (pike2).

View 1 Replies

ActionScript 3.0 :: Disable Buttons For 3 Seconds When Another Button Is Clicked?

May 20, 2009

I'll explain the problem I have having as Im sure there are a few solutions, I have a flash website which has four main links, HOME, SERVICES, BLOG, CONTACT.

When the services button is pressed 5 more buttons come in from the right hand side each is slightly delayed to give a stacking effect.

The problem is if the user clicks on the Services button and then quickly presses the another button the service buttons tween in onto the wrong page!

The solution I am thinking is to set a time delay on the services button so when it is pressed the other buttons are delayed for a few seconds to give time for all teh serivecs buttons to tween in.

If so how could I implement it? I have bene trying many things to get it to work, I almost have it, but the delay only works the first time the button is pressed and I cant seem to get the timer to reset!

View 7 Replies

Disable Nextpage Button Till All Other Buttons Clicked?

Oct 26, 2011

I am creating a learning document. I would like to disable nextpage button till all other buttons clicked and movieclip finished.I try to use if stamement but I could not be successfull because my nexpage button is on main frame and my other buttons on movieclip.

I disable nextpage button mainframe and I use following code using AS2.

btn1.onPress = function(){
_parent.forwardBtn._visible=false;
}

[code]....

I have three picture and buttons. Therefore user need to enlarge picture by pressing buttons after viewing all image. Then user need to move next page. The next page is another movie clip. I would like to disable nextpage button here to till MC complete.

View 1 Replies

ActionScript 1/2 :: Replacing An Object With A Larger Version Of It When Mouse Is Clicked On A Separate Mc?

Oct 7, 2010

I am creating a fish-eat-fish movie and I need some help. I created a fish (pike1) that follows the mouse. Another fish (Chub) is set to disappear when clicked.What I want to do (and need help with) is to have pike1 grow larger  (either by just growing larger or having pike1 disappear and be replaced on mouse click by a larger pike (pike2) when the user clicks on Chub

View 1 Replies

ActionScript 3.0 :: Animation To Stay After Rollover?

Oct 27, 2009

What I'm trying to do is have a button that when you roll over it, this image gallery I have will appear. I need it to stay after the roll over though and not disappear again

View 2 Replies

ActionScript 3.0 :: Rollover Small Image To Show Larger Version

Mar 29, 2009

I started using AS3. At the moment I'm working on a project with (small) image galleries. When you roll over a small image, there's a larger version showing up, and the thumb changes also. You can also click the image, and then a lightbox effect pops up. To achieve this, I'm using the following script, which works fine:

Code:
img1ro.visible = false;
cl1.visible = false;
btn1.addEventListener(MouseEvent.MOUSE_OVER, over1);
btn1.addEventListener(MouseEvent.MOUSE_OUT, out1);
btn1.addEventListener(MouseEvent.CLICK,lightbox1);
function over1(event:MouseEvent):void {
[Code] .....

But I was wondering if there's an easier way to add images. At the moment, I copy-paste the script, and have to change the numbers according to the number of images. Is it possible to put the images in an array or something like that?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved