ActionScript 2.0 :: 1 Button With Multiple Rollout/over Functions?
Apr 17, 2011
I have a project where I need my button to have more than one function.I attached my file.I have a countdown within frames 1-90. I didn't convert it to a movie clip because I have a flash movie that needs to run after it, which I put in frame 90.The way it runs right now with my rollover/out actions is perfect, BUT IT'S REVERSED from what I need. so close! grrr!I need the countdown to stop if you move the mouse away.Then when the video starts (after the countdown), I need the rollout action to disable. If I can get this to work, I will be putting an exit out button on the flv movie so the user may exit out, using the button instead of the rollout action of the mouse.Brief summary:countdown frames - rollover/rollout flv movie - no mouse actions
View 7 Replies
Similar Posts:
Jul 13, 2003
I have an mc with a button nested inside and on this button I have AS for the rollOver and rollOut to play certain frames of the mc. The problem is when I use this mc (called 'mybutton_mc') in a menu system and I want to add AS to it to navigate to different areas, ie adding onPress to this mc, it kill's the AS on the rollOver and rollOut functions of the button within.
View 1 Replies
Apr 18, 2011
I have a project where I need my button to have more than one function.the link to my flash file is:(tried to upload but it keeps saying invalid file)I have a countdown within frames 1-90. I didn't convert it to a movie clip because I have a flash movie that needs to run after it, which I put in frame 90.The way it runs right now with my rollover/out actions is perfect, BUT IT'S REVERSED from what I need. so close! grrr!
I need the countdown to stop if you move the mouse away.Then when the video starts (after the countdown), I need the rollout action to disable. If I can get this to work, I will be putting an exit out button on the flv movie so the user may exit out, using the button instead of the rollout action of the mouse.
Brief summary:
countdown frames - rollover/rollout
flv movie - no mouse actions
View 9 Replies
Nov 8, 2009
I'm designing an interface for a class, and the buttons that I am using all have multiple functions.For example, when the story button is clicked, I need the mc to stop playing and change to text (in the same window/screen, just no mc playing). The mc is 31 frames long, but if there's a way to just make it loop continuously until told not to, Currently, my code looks like this:
stop();
story_btn.addEventListener(MouseEvent.CLICK,story);
function story(event:MouseEvent):void { gotoAndStop(32);}credits_btn.addEventListener(MouseEvent.CLICK,credits);[code]...
When I click the button, the mc does not stop playing and the text does not show up.
View 6 Replies
Oct 31, 2011
I have used the loader script to load an external swf into current project. I have added a button to unload the external file when wanted, and was wondering if you could have multiple functions for that button, so that when you click it to unload it works as a 'home' button as well, and takes the user back to the mainpage again?Might be wise to mention that im kinda new to adobe flash and as3, and not sure if the way i have used to load the external swf was the easiest. Seems like a few have had some issues with this subject before me as well.
View 8 Replies
May 8, 2008
How would I manage to enable a button to perform several operations? I want a button to do the following.
I want it to change colour etc, when it is hovered over, I also want it to activate anther flash file on the page via local connection on release. How do I allow the button to set up different actions? Do I need to make 2 separate invisible buttons? And have action script applied to both of them for the 2 commands? How for example would I be able to extend this so that I can have the button doing several things? Say:
1) On rollover it changes colour
2) On rollover it activates a flash mc on the page
3) On Click it changes colour
4) On release it takes the user to another page
View 2 Replies
Jan 28, 2003
how to make button do multiple things at the same time. i.e when button is pressed it animates object1 and object2 i have a buttons that opens a sliding door (code is:
on (release) {
control.gotoAndStop(2);
}
so it opens a door where sound control is and i want for the same button at the same time to open lets say another door somewhere in the same stage with a music tracks in ther
View 1 Replies
Aug 19, 2010
can you make a button have multiple functions? as in if i click a button one and imahe will pop up and then click that same button and another different image will pop up??
View 1 Replies
Jul 14, 2009
I have these little menu tags which move down when you roll over them. Then, if you click one, it stays down. Then the other menu tags move down when you roll over them, until you click one, at which point the previous tab moves back to original position. (I'm sure that makes little to no sense... so look here: [URL]. Anyway, it works great for the first couple of seconds, then after a while (especially after a click) some of the menu's don't return to their previous position. My fla is attached, but here is my script.
PHP Code:
//import classes
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
import flash.display.MovieClip;
[Code] .....
View 3 Replies
Jan 28, 2010
I have a movieclip that has a stop function on the first and last frame. I want the user to rollover a button on the stage, and have the movieclip go to frame 3 and stop. When they rollout, I want the movie clip to go back to frame 1 and stop. There is a stop code on both the first and last frames so the mc won't play through. I had it coded in as 2 and it worked fine, but I am using Flash cs4 now and I changed the publish settings to as3. It seems extremely complicated to get this to work in as3
View 3 Replies
Jan 14, 2006
I hacked together a bunch of code I've found throughout the most excellent Kirupa and added a bunch of stuff myself.(Mad props to Scotty and Seniculor (sp?) btw)Everything I added works except the rollover function for multiple MC's that are created when the gallery generates.I want the buttons to continue fading out after rollout.Once you roll in to another MC the rollout function stops.It should work like a "wave" effect when you roll over all the buttons quickly.I've played around with local variables, deleting enterframes, etc. etc. but just can't get anything to work.I only included applicable code so please ignore any extra "}" I may have left in there when I pasted.[code]
View 2 Replies
Jun 20, 2009
I have navigation set up, where on rollover of each button 3 separate movieclips are affected. On release another movieclip is effected and a swf is loaded. Fine so far - here is the code (where the first mclip is where the buttons are located and the command goes to a frame in that mclip, the 2nd mclip is called 'copy' and the 3rd is called 'date')(the mclip effected on release is called 'overs'):-
[Code]....
View 1 Replies
Jun 20, 2009
I have navigation set up, where on rollover of each button 3 separate movieclips are affected. On release another movieclip is effected and a swf is loaded. Fine so far - here is the code (where the first mclip is where the buttons are located and the command goes to a frame in that mclip, the 2nd mclip is called copy and the 3rd is called date)(the mclip effected on release is called overs):-
[Code]...
The last time i put a problem on to this forum, i also spent a long time pasting my code and trying to describe my problem in detail, i then received an email from someone asking me what my problem was! Please only reply with questions based on what i've put here, if it doesn't make any sense to you then don't worry about it. If it does make sense to anyone out there tho, or if you have a better way of turning rollover states on and off, please dont' hestitate to get in touch with me.
View 13 Replies
Jun 17, 2004
I have one function that puts text in a text field and makes a button goto a url onRelease.The code is like this:
Code:
item.onRelease = function() {
myButton.onRelease = function() {
getURL("http://google.com", "_blank");
}
talk = this.txt;
}
the only problem is that the button doesn't work onRelease. i think that it is because there are too many functions there, but at the same time,
View 5 Replies
Jul 12, 2005
Take a look at the following sites; and notice their menus. Both have a rollover and rollout on their buttons, and when the button is hit the button stays down until another button is pressed. In the scissor sisters site, the neon bar still fades out after another has been pressed.
Franz Ferdinand
Scissor Sisters
I am trying to achieve this myself with my own site, which you can view in progess here:
My Site
I have mastered the button rollOver and rollOut effect, in which i gathered the code from a kirupa tutorial. My problem is, getting the neon bar to stay underneath teh last button that has been pressed.The main movie is located on the main timeline in frame 2, because frame 1 contains the pre loader.
The actions for frame 2 of the main timeline are:
Code:
stop();
movieLoader.loadMovie("news.swf");
total = movieLoader.getBytesTotal();
loads = movieLoader.getBytesLoaded();
[code]....
Now the buttons are not buttons, they are movieclips, which are located on the stage, and have instance names of b1 for news, b2 for biography etc etcInside the movieclip, the animation of the neon bar fading in takes 25 frames, and this has a stop action on the end.
This code is placed on the first frame:
Code:
stop();
news.onEnterFrame = function(){
if(rewind == true)
[code]....
So now my problem is to make sure that the last button clicked leaves the underline bar down until the next button is pressed.
View 2 Replies
Mar 23, 2007
I started working on a little page of mine, and I already ran into some trouble hehe. I'm kind of learning as I go along. Heres the script I'm having some trouble with:
ActionScript Code:
this.qmbacking.onRollOver = function() {
//tweens rolling in the menu
[code]......
View 6 Replies
May 21, 2009
There is a flash which have a small navigation on the buttom. There is a small arrow on the buttom when the mouse rollover on the arrow the arrow is gone dissaper and the navigation show on the stage. When i rollout the mouse its collaps but when my mouse pointer is in the swf area. If i have rollout quickly form the navigation out of the swf area (on html). It's not working.
View 3 Replies
May 4, 2009
I have a simple graphic in Scene One which when you mouse over it, it changes to Scene Two where there are several round buttons that people can navigate with. What I want is that when the mouse is dragged away from the stage where the buttons are in Scene Two, you are taken back to Scene one. I can't seem to work this out. I only to want to go back to Scene One when the mouse is completely out of the SWF.
I made another button and made a square hit point that covers the stage and put that on the level above the other round button levels but this then doesn't allow you to activate and click the buttons underneath the square button. I just want a rollOut when the mouse comes completely off the SWF back to Scene One. Am I missing something?
View 2 Replies
Jul 25, 2009
i have made a button with a rollover and rollout state. Everything seems to work fine but only once, When you want to use the button again. It does not seem to start again on "rollover". it only does the rollout script.
stop();
import flash.events.MouseEvent;
btn1.addEventListener(MouseEvent.MOUSE_OVER, over);
[Code]....
View 2 Replies
Nov 17, 2009
i have followed the complex button tutorial today to design a websites buttons..
I wanted each button to link to a seperate frame for each seperate page of the site.
The roll out effect is all in one movieclip, with the actions on frame one (below)
//stop(); this.onEnterFrame = function(){
[Code]....
but I have had no success, it works perfectly for URL's typically!
View 1 Replies
Sep 28, 2010
I need some help figuring out why my rollout is not working on this menu:I put some little close buttons at the bottom just to link them closed for now.Rollout isn't working.My code for each link is a movie clip with two frames for example links on "mens"Frame 1:
Code:
stop();
mens.addEventListener(MouseEvent.ROLL_OVER, mensMouseOver, false, 0, true);
[code].....
View 1 Replies
Aug 29, 2010
I have movieclip controlled by a button. by rollover on the button the movieclip transition starts working and I want that on rollout the movieclip will disappear in smooth fade. (the movieclip and the button have an instance name).
View 2 Replies
Dec 30, 2009
I have looked all over internet and so many different forums but no1 has the answer yet but here is what i rly wanna do in AS2 :
lets say i have a button(which is a MovieClip and not an actual button) tweening in size to 150% from frame 1 to 40 and then another tween sizing it back to 100% from frame 40 to 80. Then when some1 Rolls Over the button you see this animation going in a loop from 1 to 80 and again and again etc. BUT i actually want a Roll OUT that finishes the animation to frame 80 (even when some1 rolls out on frame 10 or so) and then returns to and stops on frame 1.
This seems quite easy to me and i used several stuff including currentframe etc but i cant make it to work.
View 8 Replies
Jun 30, 2005
I have created a slide out menu using a tutorial (http:url...) the only differences are my buttons slide out to the right and they should do this when the user mouses over and then slide back when they mouse out. Unfortunately I am getting an error on the rollOut which I apply to 'dummy button' movie clip in the dropdown movie clip which allows the 2nd menu to slide back. This is the actionscript I'm using:
onClipEvent (mouseUp) {
tellTarget ("_root.reverse") {
gotoAndPlay ("subbuttons1");[code]....
how I can get this to work (?), I can't upload the .fla here as it is too large but you should be able to view the tutorial fla if needed...
View 1 Replies
Sep 24, 2007
i need to make a button out of an image and i want it to go BW (black & white) when rollOver and back to color when RollOut.
View 6 Replies
Jan 24, 2008
this is what i have ON THE BUTTON itself. (i'm using it to generate a stack of buttons, which work almost perfectly)
Code:
on(release)
{
this.text_txt.textColor = 0xFFFFFF;
this.base_mc._alpha = 100;
[code].....
now what happens is that everything works UNTIL i select a button. THEN it no longer reports (traces) when i mouse over it. (problem 1) ALSO once i select another button, the old button alpha doesn't reset to 0 and now i have TWO buttons that don't report on the rollOver. they still work, oddly enough, in terms of loading fullRes...how do i fix it? 'currSel', BTW, is defined in the main AS body...
View 2 Replies
Nov 12, 2009
I am a complete novice in Flash and action scripting, but i'm trying to create a button for a website that simply fades in on roll over and fades out on roll off. I've successfully managed to make the roll over effect work, but i'm struggling to figure out how to reverse the animation on roll off.
View 4 Replies
Feb 10, 2011
I have 7 buttons on my stage (buttonA, buttonB, etc) all MC's. I would like to control the RollOver, RollOut & CLick with AS3. At first I thought I could just tell my button Listener where to go
i.e. gotoAndStop(2) which is RollOver state.
or gotoAndStop(3) which is Click state.
and gotoAndStop(1) which is RollOut state.
But when I "Click" and then rollout, I need the button to stay "clicked" until some other button is "clicked".
View 2 Replies
Feb 9, 2009
I'm in the process of building a Flash AS3 navigation for a client's website. The horizontal navigation has five main links, and a secondary navigation will drop down under three of them on rollover (this part isn't complete yet). The rollover and rollout states are animated: on rollover they gradually change color; on rollout they gradually change back to the original color.Well, I've finally gotten the code figured out (my first foray into AS3 after finally being comfortable with some things in AS2!). However, depending on how you move the mouse (i.e., if you move the mouse over the button too quickly), the rollover state remains on rollout and I can't figure out why. Can someone help? I also need to know how to designate an active state when the button is clicked (say, if you clicked on Projects, the Projects button would be highlighted (the rollover state) when you're on that page.The link to the in-progress navigation is located here: http:[url].... And this is the AS:
var homeLink:URLRequest = new URLRequest("../index.htm");
var mySound:Sound = new clickSound();
home_mc.buttonMode = true;[code]......
View 0 Replies
Jan 23, 2011
A friend of mine asked me to build a web site. Since I am a graphic illustrator and that I know a lot of After Effects, he tought that that would be easy for me building his site.Well, here I am, stuck with this flash problem (I am a nuke in actionScript). The guy wants an interactive map of the best country in the world, that is, Canada.When the users mouse hovers a province, a little rollover/rollout animation plays. Actually, it took me about three weeks to make it work, but it works.Now, this is wheretrying to figure out how to trigger a movieclip with a rollover/rollout button. When the users mouse hovers an important city (in this example, Ottawa, Ontario), on rollover, it should play the movieclip box_mc up to frame 40 and on rollout, play the rest of the movieclip
View 4 Replies