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




Rollerover Button Ontop Of Rollover Button



Hi, Im trying to create a flash file that has 2 layers of rollover buttons ontop of each other. one layer consist of lets say 10 horizontal rect buttons that control volume lvl, the layer ontop of that consists of 10 vertical rect buttons that control the pan, at the moment only the top layer is working, dose anyone know of a way to have both layers active? in other words have 2 layers of buttons on top of each other working at the same time.

sorry about the confusing post, my mind has melted trying to figure out how to use AS3.

PS: i found an old post from 2005 that stated IMS had an answer,

and i quote.
"I made this for someone else, not sure if it is what you are looking for
but take a look. its rollovers with buttons on buttons.. you might be able to tweek it... It's in 2004MXPRO

IMS"

thats all the message said, and i couldn't find anything attached.

thanking you in advance, Buklen



FlashKit > Flash Help > Actionscript 3.0
Posted on: 10-23-2008, 12:51 AM


View Complete Forum Thread with Replies

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

Rollover/off Anim Control Button, Problem Adding Button Functionality
Hi, I'm really new to flash, so forgive me for sounding like an simpleton.

I'm trying to create a button that when you roll over, it grows in size and some text animates onto it. When you roll off, the anim is supposed to reverse and go back to the rest state. I've managed to get the animation to work okay, so it grows and shrinks accordinly. My problem now is, I want to make this into a functional button, ie to add a mailto: link, or a link to another frame.

Whats the best way to achieve this? I've tried to convert to a button and have the anim in all button states, but this didn't work. And a get an error when trying to add the mailto action script to the button, saying 'on release' should only be used on instanced buttons. I tried making an invisible button behind the animated on, but I loose the animation playback when rolling over the invisible button. It seems I can't do both for some reason.

I'm using this script on the first frame to control the playback of the movie. And stop on the last frame.


stop();
this.onRollOver = function() {
rewind = false;
this.play();
};
this.onRollOut = function() {
rewind = true;
};
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};

Any help would be appreciated, I've tried so many times with different approaches to no avail.

Mute Button Not Working For Button Rollover Sounds
I got my code for a mute button from the flashkit FAQ on sound,
and it seems to be muting everything but my rollovers. Anyone have any ideas?

it mutes the sound in all levels except for the buttons in _level0
and the button itself is in _level0 ?

code: // on main timeline
globalvolume = new Sound(); // no associated movie clip.

//button to mute sound and change toggle mc frames
on(release){
if(_root.globalvolume.getVolume() > 0){
_root.globalvolume.setVolume(0); // mutes all sound
play(); //switch to mute frame
} else {
_root.globalvolume.setVolume(100); // unmutes all sound
play(); //switch to unmute frame
}
}

thanks in advance for any input

Button States - How To Keep Button On Rollover State When Clicked.
on (rollOver) {
this.btn_about.gotoAndPlay("mouseover");
setProperty(this.btn_about, _x, 25);
setProperty(this.btn_about, _y, 29);
}
on (rollOut) {
this.btn_about.gotoAndPlay("mouseout");
}

on(release){
_parent.gotoAndStop("about");
}

There's my button code. Now a rundown on my delima.

I have a movie "company.swf" that is loaded into an empty MC "content" that is located within my main movie "main.swf". My buttons are all located inside an MC "subnav" inside of company.swf. I have seperate MC's for each button with an actual button with just a "hit" area. I would like each button to stay in the rollover state when clicked so a user knows where they are in each section. I hope I'm being clear here. My rollover and rollout works fine.

Please help!! Thanks

Rollover Button To Be Triggered By Area Smaller Than Button
I'm pretty new at Flash. I am creating a flash file to insert into a PowerPoint, since PP has no way to really use mouseovers. This is my first project, but I'm going to want to do a lot with this technique in the future.

I have an image of the toolbar of our software and images (transparent pngs) of the tooltips with arrows that will point to the icon.

I can make a roll-over button that only appears when the user rolls over the icon, but the tooltip text is wider than the icon that triggers it, so the buttons I'm creating overlap.

So I want the area that triggers the roll-over effect to be smaller than the button. Or is there a better way to accomplish this task?

Thanks for any advice!

Navigation Trouble, Using Button Rollover, Rollout And Button Down
Hello all

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();
percent1 = Math.round(loads/total*100);
movieLoadText.text = "Loading news "+percent1+"%";
if (loads != total) {
} else {
movieLoadText._visible = false;
}
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 etc

Inside 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)
{
prevFrame();
}

}




news.onRollOver = function(){

rewind = false;
gotoAndPlay(25);

}

news.onRollOut = function(){

rewind = true;

}

news.onRelease = function(){
_root.logo.gotoAndPlay("buzz");
_root.movieLoader.loadMovie("news.swf");

}
As you have probably noticed this is the same as the kirupa tutorial.

So now my problem is to make sure that the last button clicked leaves the underline bar down until the next button is pressed.

Whoever can solve this for me is a life saviour!

Thanks

Williby

Button Inside Complex Button RollOut/RollOver
I created a movieclip from the tutorial "Complex Button RollOut/RollOver Effects" which I want to use as a menu. Is it possible to add buttons inside this movieclip??? I try and try but the buttons are never recognized, only the movieclip can be pressed.

Rollover Button To Be Triggered By Area Smaller Than Button
Newbie. Trying to simulate tool tips on roll-over toolbar

I'm pretty new at Flash. I am creating a flash file to insert into a PowerPoint, since PP has no way to really use mouseovers. This is my first project, but I'm going to want to do a lot with this technique in the future.

I have an image of the toolbar of our software and images (transparent pngs) of the tooltips with arrows that will point to the icon.

I can make a roll-over button that only appears when the user rolls over the icon, but the tooltip text is wider than the icon that triggers it, so the buttons I'm creating overlap.

So I want the area that triggers the roll-over effect to be smaller than the button. Or is there a better way to accomplish this task?

Thanks for any advice!
 

[f8] Button RollOver Show's Movie. How To Unshow Movie On RollOver Other Button
I've made a productoverview in flash.

There are 4 productphoto's (buttons with just a rollOver-function, no clicks).

Behind every productphoto there is a detailed product-specification (movie) that shows up when rollOver on the productphoto's.

So I want the product-specification movie to appear when theres a rollOver on the productphoto. The movie has to show on rollOver and has to stay visible on rollOut. But when u move to the next productphoto (rollOver) the previous product-specification movie has to disappear and the new one has to show.

I don't know what to do. so far i have this:

on (rollOver) {
tellTarget ("sony-1-1") {
gotoAndPlay (2);
}

Help ROllOVer On Button Activated Another MC, But Only With Every OTHER Button....
Hi, just as it says in the topic title, I have a menu and it only activated every other button in the middle movie clip. I dont know anything about actionscript or how to set up a flash but Im trying very hard

if anyone can help me I'll really appreciate it.

why is it not doing it for every button?
does anyone know actionscript to fix this?

i have the file attatched below for the swf just so you get an idea

might take a second to load and no preloader...

http://www.artic.edu/~sdodso1/fightplay2.swf

http://www.artic.edu/~sdodso1/fightplay2.fla

RollOver On A Button Causes Another Button To RollOut
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
}
this.qmbacking.onRollOut = function() {
//tweens rolling out the menu
}
this.introb.onRelease = function(){
trace("intro pressed")
}
this.aboutb.onRelease = function(){
trace("about pressed")
}
this.portfoliob.onRelease = function(){
trace("portfolio pressed")
}
this.contactb.onRelease = function(){
trace("contact pressed")
}




The problem is is that when I rollover the menu buttons, it will cause the qmbacking to run the script under rollOut. Heres the swf:
http://hundsteg.se/Erik/portfolio.swf

Is there any way to "override" this? Or does anyone know of an alternative way of making this type of menu? Only thing I can think of is making an invisible button on the rest of the stage but that will cause a lot of other trouble :/.

Thanks!

Trying To Make A Button Rollover, Wait And Recheck Rollover
hi. i'm mostly comfortable with the graphical elements of using flash and there a gaps in my knowledge when i want to polish things up.

i have a bunch of buttons which, when rolled over, trigger some text to sweep accross in an area above the buttons and sweep away when rolled out.
this works nicely but if the viewer sweeps the mouse over a few buttons quickly all the MCs with text in play and it gets very messy.

the only way i can think to tidy this up is to make the button delay when rolled over and recheck about half a second later. if it's still rolled over then it plays the MC. i tried this the obvious way (triggering a small MC with onRollover > play MC at the end) but it needs the actual act of rolling over to trigger so i had to roll out and over again which defies the point >.<

i realise this is a really specific problem and it's very cheeky to ask others to solve my problems but if any of you have come accross similar problems and can point me in a better direction i'd really appreciate it.

Button RollOver/RollOut Effects WITH Looping On RollOver
I'm planning to use this tutorial, below to make a button:
http://www.kirupa.com/developer/mx2004/button_effect.htm

My question is how can I make it so that only on the rollover, the effect will keep looping?

Example: http://jump5.com/

On the right side, the navigation has this nice hover animation with the pointing arrow that continues to twitch on rollover.

Background Rollover With Button Rollover
I'd like for my background behind my buttons to rollover, but remain rolled while I touch the buttons and make those rollover. Here's an example:

http://www.zymocreations.com/index_f.htm

I can get both of my rollovers going, but I can't get the background to stay rolled when I move to the buttons.

Any suggestions? Thanks ahead of time!

Button Rollover Disabled Due To MC Rollover
i have used this nifty code from this .fla (http://www.actionscript.org/forums/a...chmentid=12251, 6.4kb) and it works perfectly. it's a rollover effect that plays or reverses an MC on rollover, i have just one extra thing i'd like to ask that maybe someone could help me with.
in my example, i have a curtain that goes up and down when rolled over and out. this works fine, but what i want is to have my menu behind the curtain, so when the user rolls over the curtain, it goes up, revealing the menu. i've done this, but for some reason my basic menu's rollover actions are disabled. can't anyone help me to get them to work?

here's the code from devonair's example:code: stop();
curtain.onRollOver = function() {
this.onEnterFrame = function() {
this._currentframe == this._totalframes ? delete this.onEnterFrame : this.nextFrame();
};
};
curtain.onRollOut = curtain.onDragOut = function () {
this.onEnterFrame = function() {
this._currentframe == 1 ? delete this.onEnterFrame : this.prevFrame();
};
};and here are the actions on my basic menu that is within the 'curtain' MCcode: on (rollOver) {MC1.gotoAndPlay("over");}
on (rollOut) {MC1.gotoAndPlay("out");}
on (release) {getURL("home.htm", "iframe");}many thanx in advance for any help given...

Simple Rollerover Script Not Working
hey guys ive attached an FLA

ive got it so that on rollover it shows a MSG box, and i want it to tween up to 50% tint then on rollout the MSG box dissapears and it fades back to 0% tint.

i cant see anything wrong with the code i used. maybe its my method. i dunno anywayz, sum help please



Skribble

Static Text URL Rollerover Colour?
Is it possilble to change the URL colour of a static text link on rollover?
Thanks

RollOver Button Fade In...rollOut Button Fade Out
ok, maybe this is simple but i cant get it to work....

i want to make a button (a circle) and when i roll over it a block of text or something should fade in and then stop at a fully visible state. it should wait at that state of appearance until the mouse rolls out of the button's hit area which should cause the the text block to fade out showing the button in it's normal Up state...i can't figure out what i have to do (scripting or MC wise) to make this work...please help me! thanks!

*Julie

Help With Button Rollover
could you tell me what is wrong with these buttons. the rollover image doesnt work

heres my site
http://www.angelfire.com/tv2/tv220/site.swf
___________________
thats for your time

Button Rollover Help
I'm new to flash. Have so much idea's in my head that is dying to get out . Please, can someone tell me how to make a button motion on a mouse roll over?

http://members.rogers.com/tmtk

Rollover Button
I am trying to make a rollover button in flash mx. I want the button to rollover and goto a certain scene and frame. How do I do this? I am stumped. Thanks.

Rollover Button
is there anyway to have like on the rollover of one button and it set value of month="a" and on the roll over of the second button to day="a", actually stupid question i know the answer to this, but is there anyway to have it to where these buttons overlap. that way basically if the mouse is over the button that sets month and the button that sets day. then month=a and day=a, and obviously if the mouse is just over one, it only sets that value. OVERALL, I want to know if i can have two buttons, on top of another and both buttons activated by th press of a click(roll over in my case, but thas something i can change). THanks guys

Button And RollOver
Hi all!

I have a little problem with my button.

I have a MC with 2 layers and 2 images in each layer.
On the first layer I have in each images, one invisible button.
On the second layer I have in each images a graphic.

The code on the first button is:

on (rollOver){
gotoAndStop(2);
}

The code on the second button is:

on (releaseOutside, rollOut, dragOver, dragOut) {
gotoAndStop(1);
}

A simple rollOver button!
But the problem is that if pass very quikly over the button, it still stay on the rollOver position! Wath can I do?

Rollover Button
I made a simple button with an mc in the over state. plays perfect but would whant if the use does a rollout the mc play in reverse.
How do that?

Button Rollover
Ok, I have seen this done but how? I want to rollover a button and in another part of the screen have a picture show up in a box. I somewhat tried naming the button "home" and making a movie clip and telling the button

onRollOver=funtion(????????)

or should I do something different?
thanks

Button Rollover
Hey there. I'm having a (probably) stupid problem. I want a clip to play on a rollover and keep playing after you roll off it, but at the same time have an image appear ONLY when the mouse is on the button.

How do you make one thing keep playing out after a rollout, but another thing stop at the same time?

check out the attachment, it might help explain. And please don't judge me on it, it's just to show a point.

Any help??

Button Rollover
hi, i'm gonna keep it short here
i got a movieclip that fades in and out. here's my timeline:

-frame 1 = 50% (stop()
[shape tween]
-frame 20 = 100%
[shape tween]
-frame 40 = 50%

here's the code iv wrote on it:


Code:
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
if (this._currentframe == 1) {
play();
} else if (this._currentframe ==20){
stop();
}
} else {
if (this._currentframe != 1) {
play();
}
}
}
the buttons now fades in and out when i go on and off them with my mouse, but when i go over them while they are playing they don't work
what can i do?

also, maybe there's a simpeler script for this action. Can someone type it down please?


ps: sorry for my bad english

Button Rollover Help?
hi, i'm gonna keep it short here
i got a movieclip that fades in and out. here's my timeline:

-frame 1 = 50% (stop()
[shape tween]
-frame 20 = 100%
[shape tween]
-frame 40 = 50%

here's the code iv wrote on it:


Code:
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
if (this._currentframe == 1) {
play();
} else if (this._currentframe ==20){
stop();
}
} else {
if (this._currentframe != 1) {
play();
}
}
}
the buttons now fades in and out when i go on and off them with my mouse, but when i go over them while they are playing they don't work
what can i do?

also, maybe there's a simpeler script for this action. Can someone type it down please?


ps: sorry for my bad english

Button Rollover Help?
hi, i'm gonna keep it short here
i got a movieclip that fades in and out. here's my timeline:

-frame 1 = 50% (stop()
[shape tween]
-frame 20 = 100%
[shape tween]
-frame 40 = 50%

here's the code iv wrote on it:


Code:
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
if (this._currentframe == 1) {
play();
} else if (this._currentframe ==20){
stop();
}
} else {
if (this._currentframe != 1) {
play();
}
}
}


the buttons now fades in and out when i go on and off them with my mouse, but when i go over them while they are playing they don't work
what can i do?

also, maybe there's a simpeler script for this action. Can someone type it down please?


ps: sorry for my bad english

Rollover Button
I have made a movie. In side created a new movie. gave it a instance name content. made a button with this for A,S

button.onRelease = function() {
_root.content.loadMovie("gall.swf");
};

Now that works fine,

My question is, I made a button with rollover
to display dynamic text, But keep getting errors. Can someone please
tell me how I can get around this problem.

I want too use rollover button effect.

Many thanks.

Regards Barry_UK

Button Rollover Help....
hey

i have created a button so on mouse over a panel slides up to reveal some links. now when u move away from the button completely it just resets to its normal up state. how can u make it so when u leave the button the panel slides back down instead of just resetting to the up frame? i have looked for some tuts but found nothing. any help would be very much appreciated.

thanks to anyone who can offer some suggestions,

james

Button Rollover
Have a quick question about a button animation rollover. In the past I have created a roll over and roll out animation for a button, but the problem was if you rolled over it too quick it would jump to the roll out portion of the animation before it had completed the roll over animation. How can I let the roll over animation complete even if you have rolled out? Thanks for any help.

RollOver Button
Hello, I need a script that allows a small image onRollOver to grow bigger, but with ease, not just BAM! it's big, for example I have a image thumbnail that is 60 x 44 onRollOver I wan't it to grow to 70 x 54, but with motion, I wan't it also to Shrink back onRollOut, can anybody show me a basic script for this?

If you can it be a big help, thanks.

Button - Rollover
I am trying to make a simple movie player in flash, with three buttons: PLAY, PAUSE and STOP. The three buttons are Symbols, NO text.

The problem is, that I need the words: play, pause and stop to apear to the right side of the buttons, so the person knows what the symbols are. But:

If I write them down in the "play" Button for example, they would only be visible on the "OVER" section.

And the real problem now is that my mouse touches the "invisible" space where my text play should apear, AND ACTIVATES the button without having to touch the symbol!

Ex: (SYMB) --- Normal view
(SYMB) PLAY --- When Mouse over Symbol
(SYMB) PLAY --- When Mouse over "Play"space

PLEASE HELP, i hope i described my problem good enough, so you can help me.
THX/
Ovi

Button MC Rollover
Hi all,

I am attempting to create buttons as found on this site: http://www.flashation.com/stardust.html

I have a static up state, a MC rollover (for the color change and fade out). It all is working except when I remove my mouse from the rollover the colors do not fade out they just go back to the static state.

How is this done?

thanks,Laurel

Button Rollover Help
Hi,

I am making a flash website with mx2004 and am having problems with rollovers. When I rollsover a button on the left side of the screen, I want text to appear on the right side of the screen explaining what the button will launch. The problem is, when I rollover on the right side of the screen where the text appears, it comes up. I want the text to appear only when the buttons of the left side of the screen triggers it.
Right now I have the text on the over, down, and hit state of the button. I think I may need to add actionscripting to get it to trigger only when the button on the left rollovers. Any ideas? Thanks.

Rollover Button Help
Hi there,
I went through some of the threads but didn't quiet find what i'm looking for.

I want a menu (in the form of a movie clip - i have that part covered) to open up when the mouse moves over some text.

I know there's a method of converting the text into a movie and then a button or something like that. But I cant seem to remember exactly what to do. I tried different things but I keep gettin the message that says i cant assign scripts to movie clips or something like that.

Could someone help?

thanks a load.

+aravinda

Rollover Button
has anyone got a button effect i just want it so it has the links in just text and when hovered a bar pops out of the side.???

Sorry if im not making sense...

Rollover Button Help
hello all,

i am trying to do a simple rollover button with a text button i have
to changing color from blue to purple in the up - over state
i am putting in the hit stage a rectangle but still no luck

can anyone give me an example ?

Rollover Button
Can the star coming out from the button created by Actionscipt in that web? Or it is created by users manupulately?

http://www.disney.fr/disneyenfrance/

Any help is appreciate

Help With Button Rollover
I have a button within an MC , when I test it , the button rollOver don't seem to work.

//I have this code on the first frame

service.onRollOver = function() {
service.gotoAndStop("drop");
};
service.onRollOut = function() {
service.gotoAndStop("start");
};

//I have a button on the frame labelled "drop", and when I test the movie
//the button rollOver doesn't work, any idea ?

Help With Button Rollover Within MC
I have a button within an MC , when I test it , the button rollOver don't seem to work.

//I have this code on the first frame

service.onRollOver = function() {
service.gotoAndStop("drop");
};
service.onRollOut = function() {
service.gotoAndStop("start");
};

//I have a button on the frame labelled "drop", and when I test the movie
//the button rollOver doesn't work, any idea why its doing that ?

[MX] Button Rollover
I'm working on a button that fades when you roll over, and fades back on roll out. It works for the most part, but sometimes on roll over, you have to keep the cursor on the box for a second or two to let it register the alpha fade. I'm wondering if anyone might know a cleaner bit of code than the bit i've written. Here's the damage:

box.onRollOver = function() {
x = box._alpha;
onEnterFrame = function () {
if (x>=20) {
box._alpha = x -= 5;
}
};
};
box.onRollOut = function() {
x = box._alpha;
onEnterFrame = function () {
box._alpha = x += 10;
};
};

[F8] Button Rollover Help
I have racked my brain and poured through lynda.com's Flash book looking for this answer to no avail, I am hoping someone can point me in the right direction.

I have a set of navigation buttons that run horizontally across the top of my page. I'd like to add a rollover to them, something very simple like changing the colors, but I'd also like to have a sub menu appear on rollover.

before roll over:

portfolio

after roll over:

portfolio
fine art
freelance
new work
archive

and then how do i make the sub menus change color
and for my final question (for now) how do I actually link up to the new page those sub menus represent?

Thank you for your help.
gbs

Rollover Button
Hi Guys.

What do i need to do in order to have a rollover button, have a roll in and out effect.

Both states are video and have a build in and out when the mouse roll in and out of the button. I have used the following action in the layer above the mc to control its over and in states:

this.music_bk.onRollOver = function() {
music_bk.gotoAndPlay("_over");
}

this.music_bk.onRollOut = function() {
music_bk.gotoAndPlay("_out");
}

This isn't working well though, as i cant link the mc to take me to a marker else where in the scene, although the rollover fx works fine there must be a better way to achieve this.

Thanks in advance from a Flash newbie.

Rollover Button Help
I'm looking for suggestions for button rollovers.

When I roll over my main button, I have two satellite buttons appear. Right now they remain when my cursor leaves the button. I would like to have the satellite buttons disappear when I move the cursor away from the area defined by the original buttons combined with the area of the satellites. That is, I don't want them to disappear as I try moving from my main button over to the satellites. Any suggestions would be appreciated.

[F8] Button Within MC Rollover - Please Help
Hi I am desperate to get this resolved and I just cant seem to get it working...

I have an advanced rollover using an MC, when you rollover the MC a button appears within it which I want to link to another site.... but at the moment isnt working because the rollover commands applied to the MC means that the button doesnt work.

I have found a potential solution involving hittest but I cant get it working

I have attached an fla containing a stripped down version of the button if anyone wants to take a look

Hope you can help

[RollOver Button]
Hi!
I have just started to learn some about Flash etc...and thier for I have joined this community which seams to be very nice .

My current problem is that I want to pause all the frames and then I have an object/button that I want to start moveing once you hover over it with the mouse...I have tried to use the stop(); function, but that didnt work since that also stopped the listener for the button....anyone that has an idea of how to solve the problem?....the only way I could come up with was to crate the first frame as a static frame, where nothing is supposed to happen untill you hover over the button, then the whole thing should jump forward one frame and start from and go forward until the next command is triggered..

any ideas of how to make this possible?

Button Rollover HELP
Hi all,

I have a movie that i need help on.

The first frame has a button on it with an actionscript on the frame of stop and an actionscript on the button to "on rollover go to and play frame 2".

From frame 2 onwards i have some layers that playout a quick animation. This also has a button on it with actionscrit on it that says "on roll out play fram 1". This also has a stop actionscipt on the lastframe.

My problem is that in the small animation there are 4 other buttons that are causing a loop error on rollover.

Anyone got any ideas what i going on.

Thanks

[CS3] Rollover Button Bug?
Hello guys!

I tried creating a simple rollover button but there seems to be some kind of bug where the hit area over text contained in the button does not work because the arrow cursor changes to the type cursor over the text (but only the text, other parts of the button are fine) and weirdly enough I am able to select the text inside the button as if it was a document (??).

Now if I enable simple buttons in CS3, the button works fine, if I do command+return to open it in flash player or simply upload to my website, I get the bug... So is this a CS3 issue or a Flash Player 9 issue?? I've never encountered this kind of behavior before!

Check out the button here and try to mouseover the text in the button:

http://www.tlcondemand.com/test/buttontest.swf

Any ideas on this will be very much appreciated! Cheers!

(Mac OS X 10.5.2, Flash CS3, Flash Player 9.0.124.0)

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