See Related Forum Messages: Follow the Links Below to View Complete Thread
[F8] Button Not Working With Rollover Effect..
I'm making a menu and trying to have a yellow glow and text pop up when the mouse rolls over the button. For some reason the cursor starts twitching when it's over the button and won't navigate to it's page when clicked. If I take out the rollover effects the buttons work just fine. I'm not sure what I am doing wrong here, I included the file to help explain what I mean. Any help would be super sweet!
Button Rollover Video Effect Not Always Working
[ACTIONSCRIPT 2]
I'm working on the following effect, where a button rollover causes a small video of sparkles to start playing.
My problem is that most of the time the video will play fine when rolled over, but there are some times - enough to be annoying - that it does not.
I have attached my files sparkle.fla and sparkle.flv to this message (inside of sparkle.zip) and the latest version can be viewed here:
http://www.simobile.com/sparkle/sparkle.html
It's using the FLVPlayback component, whereas the original I am basing it on used NetStream, attachVideo etc. That's here:
http://theflashblog.com/?p=63
That seems to fire the video effect every time on rollover. I have decompiled some of the code from that, and placed it at the end of this message, along with an excerpt from my code of the onRollOut, OnRollOver handlers.
Can anybody pass along any advice as to why the rollover video effect is not always firing in my version? Thanks in advance for any replies.
Excerpt of code from original:
var ns = new NetStream(_root.nc);
v.v.attachVideo(ns);
ns.play("sparkle.flv");
ns.pause(true);
ns.onStatus = function (info)
{
if (info.code == "NetStream.Play.Stop")
{
v._visible = false;
} // end if
};
b.onRollOver = function ()
{
v._visible = true;
ns.seek(0);
ns.pause(false);
};
An excerpt from my code:
mcSideMenu.onRollOver = function()
{
this.gotoAndStop(2);
mcContainer.myVideo.play();
};
mcSideMenu.onRollOut = function()
{
this.gotoAndStop(1);
mcContainer.myVideo.stop();
};
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
Rollover Button Effect
Hi guys, what I'm looking for is the effect where when you mouseover a button a separate mc becomes visible and follows your _xmouse and _ymouse while you are hovering over the button.
Possibly with a hitTest() and something else?
Can anyone help?
Rollover Effect On Button
Hi
I am making a navigation bar and i want to know when ever someone click mouseover to one of the button I want a white fade going back and forth. First of all how do you create white fade. Second of all how do you make the white fade go back and forth?
Thank you an advance
Button Rollover Effect
Help! I want to rollover the button I made and have text appear next to it. I've done that...but, when the button first appears the text shows for a brief second, which I don't want. I just want the button to be visible, not the text, until a user does a mouse over.
I attached the file. I use Flash 5.
Button RollOver Effect
The roll over effect for my buttons happens before the mouse is over the actual button itself. If someone could take a look at my fla and help me figure out what is wrong, that would be great.
The problem is on the "Photos" page. The small thumbnails on the right hand side are the buttons with the rollover effect. Currently only the first thumbnail has the rollover set.
I use flash 9
http://www.ryanmichaeloman.com/rmo.fla
Thanks
[F8] Button Rollover Effect
http://img249.imageshack.us/img249/9...angaur5.th.jpg
So when i roll over the button home, I want the blue bar to slide over to the other side of it.
And when i roll off it slides back, I know how to do that but.
When i go to archive. How cna i make the blue bar go down to that word then slide over?
To make it more clear
I want it so that when u roll over the button "home" the blue bar goes over it with a tween but when u roll out it goes back then when u roll over archive. it moves down with the _y and goes over onto the _x just like home of the archive link.
this is my code for buttons right now
import mx.transitions.Tween;
import mx.transitions.easing.*;
var mc_arr = [Home_btn,Me_btn,Archive_btn];
var counter = 0;
function tweenIn_intro(target_mc:MovieClip){
var image1_a:Tween = new Tween(target_mc, "_alpha", Regular.easeIn, 0, 100, .5, true);
image1_a.onMotionFinished = function() {
counter = (counter < mc_arr.length-1) ? counter+1 : mc_arr.length;
tweenIn_intro(mc_arr[counter]);
};
}
function tweenIn(target_mc:MovieClip){
var image_rollon:Tween = new Tween(target_mc, "_alpha", Regular.easeIn, 100, 20, 1, false);
}
Home_btn.onRollOver = function(){ tweenIn(this); }
Me_btn.onRollOver = function(){ tweenIn(this); }
Archive_btn.onRollOver = function(){ tweenIn(this); }
function tweenOut(target_mc:MovieClip){
var image_rolloff:Tween = new Tween(target_mc, "_alpha", Regular.easeIn, 20, 100, 1, false);
}
Home_btn.onRollOut = function(){ tweenOut(this); }
Me_btn.onRollOut = function(){ tweenOut(this); }
Archive_btn.onRollOut = function(){ tweenOut(this); }
tweenIn_intro(mc_arr[counter]);
Button Rollover Effect
hi,
just wondering if anyone could spend a few seconds to explain how the buttons on this site > http://www.orthographic.ca/ are made.
Iv made buttons that fade in and out before (play forward and bacl), but id like to have the quick highlight, slow fade effect.
But alas, im useless
Button Rollover Effect
http://img249.imageshack.us/img249/9...angaur5.th.jpg
So when i roll over the button home, I want the blue bar to slide over to the other side of it.
And when i roll off it slides back, I know how to do that but.
When i go to archive. How cna i make the blue bar go down to that word then slide over?
this is my code for buttons right now
import mx.transitions.Tween;
import mx.transitions.easing.*;
var mc_arr = [Home_btn,Me_btn,Archive_btn];
var counter = 0;
function tweenIn_intro(target_mc:MovieClip){
var image1_a:Tween = new Tween(target_mc, "_alpha", Regular.easeIn, 0, 100, .5, true);
image1_a.onMotionFinished = function() {
counter = (counter < mc_arr.length-1) ? counter+1 : mc_arr.length;
tweenIn_intro(mc_arr[counter]);
};
}
function tweenIn(target_mc:MovieClip){
var image_rollon:Tween = new Tween(target_mc, "_alpha", Regular.easeIn, 100, 20, 1, false);
}
Home_btn.onRollOver = function(){ tweenIn(this); }
Me_btn.onRollOver = function(){ tweenIn(this); }
Archive_btn.onRollOver = function(){ tweenIn(this); }
function tweenOut(target_mc:MovieClip){
var image_rolloff:Tween = new Tween(target_mc, "_alpha", Regular.easeIn, 20, 100, 1, false);
}
Home_btn.onRollOut = function(){ tweenOut(this); }
Me_btn.onRollOut = function(){ tweenOut(this); }
Archive_btn.onRollOut = function(){ tweenOut(this); }
tweenIn_intro(mc_arr[counter]);
Button Rollover Effect
hi,
just wondering if anyone could spend a few seconds to explain how the buttons on this site > http://www.orthographic.ca/ are made.
Iv made buttons that fade in and out before (play forward and bacl), but id like to have the quick highlight, slow fade effect.
But alas, im useless
Button RollOver Effect
I want to know how to achieve the rollover effect on the buttons which appear under the content box on this site, the text appears to scroll and reappear at the bottom of the button:
http://www.heatovent.com/
Anyone know the best way to achieve this effect? I'll be using dynamic text so that may change the way this has to be done
Any help would be great.
Scott
Button On(rollOver) Not Working
I have four buttons, but I just use these to trigger my menus that fade in and fade out. The first one works, but the others don't. I have one line with my action script... I'll try to explain it below.
Actionscript in buttons (these are different for each button and the menuItem variable is changed on each rollOver...it's suppose to anyways). There is just a stop() command at each of the frames at 7,19,31,& 41 when the menus are at full alpha:
on (rollOver) {
if( this._currentframe == 7 ) {
stop(); }
else{
menuItem = "Info";
if( this._currentframe == 19 ) {
gotoAndPlay( this._currentframe + 1 ); }
if( this._currentframe == 31 ) {
gotoAndPlay( this._currentframe + 1 ); }
if( this._currentframe == 43 ) {
gotoAndPlay( this._currentframe + 1 ); }
}
}
Actionscript when reaching the end of each menu fade out section:
if ( menuItem == "Info" ) {
gotoAndPlay(2); }
if ( menuItem == "Comm" ) {
gotoAndPlay(14); }
if ( menItem == "Guard" ) {
gotoAndPlay(26); }
if ( menuItem == "Peep" ) {
gotoAndPlay(38); }
else {
stop(); }
I have buttons that check for the rollOver command that fade in a movie clip symbol that contains my menu buttons...I have 4 buttons with 4 submenus. But they don't work...var menuItem is set to "Info" and the first submenu fades in and stops at frame 7 as it should but after that, trace messages from the first "Info" button ONLY will respond on rollOver. ANY CLUES??? Thanks!
Button With Rollover,rollout Effect
Hi people,
I made a button with a rollover,rollout effect like this.
Made a but. placed it in an mc.frame2 to 12 is the rollover,frame13 to.. is the rollouteffect.
Prob.is the following.Now the button is an mc.The mc in my case is placed inside another mc.
The button had the following code:
on(press){
_parent.noPass45 = true
this.gotoAndPlay(40)
unloadMovieNum(2);
}
But because the button now is an mc(because of the rollover,rollout effect) the script ain't working.
What should I change in the script so the button(mc) calls this function on the mc it's placed on ?
Big thx in advance!!!
Grtz,
modulater
[Help] Having Problem With Button Rollover Effect
Alright here I go.
I'm working on the menu for this site in development and I have run into an error when creating it.
Well To the Point
I Tryed to mock an tutorial I found somewhere on a site to make my rollover effects.
the source code for that can be found at
Leeched Tutorial Source
I only did the first three buttons just incase I ran into a problem but when I tested the movie I got the error
"Target not found: Target="/rollover" Base="_level0.instance1.instance2.instance3.instan ce4"
Target not found: Target="/rollover" Base="_level0.instance1.instance2.instance3.instan ce4""
I checked everything twice and I cant find the problem please help me.
My Source File.
Menu
Complex Button Rollover/out Effect Help
Ok, so this time I think I have a less complicated question. I've applied the Complex Button Rollover/out Effect tutorial with no problems, but now I would like to have the same button control a Movie Clip in the same scene. I gave the MC an instance name of 'image', and tried replacing 'this' variable with 'image' naively thinking that it would do a similar effect to what Tell Target does. This is what I have on one button:
Code:
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
image.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
image.onRollOver = function(){
rewind = false;
play();
}
image.onRollOut = function(){
rewind = true;
}
I was hoping it would be that easy but I guess not
Something tells me it's an easy solution, but then again I thought a simple replacement would work =/
Any help would be much appreciated. Thanks.
Attachment - wcc_home.fla
[Help] Having Problem With Button Rollover Effect
Alright here I go.
I'm working on the menu for this site in development and I have run into an error when creating it.
Well To the Point
I Tryed to mock an tutorial I found somewhere on a site to make my rollover effects.
the source code for that can be found at
Leeched Tutorial Source
I only did the first three buttons just incase I ran into a problem but when I tested the movie I got the error
"Target not found: Target="/rollover" Base="_level0.instance1.instance2.instance3.instan ce4"
Target not found: Target="/rollover" Base="_level0.instance1.instance2.instance3.instan ce4""
I checked everything twice and I cant find the problem please help me.
My Source File.
Menu
[Help] Having Problem With Button Rollover Effect
Alright here I go.
I'm working on the menu for this site in development and I have run into an error when creating it.
Well To the Point
I Tryed to mock an tutorial I found somewhere on a site to make my rollover effects.
the source code for that can be found at
Leeched Tutorial Source
I only did the first three buttons just incase I ran into a problem but when I tested the movie I got the error
"Target not found: Target="/rollover" Base="_level0.instance1.instance2.instance3.instance4"
Target not found: Target="/rollover" Base="_level0.instance1.instance2.instance3.instance4""
I checked everything twice and I cant find the problem please help me.
My Source File.
Menu
On (rollOver) Button Scripts Not Working?
Odd..
I placed a button in a movieclip, that when mouse-overed should cause the movie to jump to scene 2, then stop. I have no Idea why it isn't working. Here's the actionscript I'm using...
code: on(rollOver){
gotoAndStop(sc2);
}
I'm puzzled. Flash MX 2004 found no errors with the script. It should work, shouldn't it? I allready checked and, yes It is a button, not a graphic or a 'Clip. BUT it IS INSIDE of one. Might that have anything to do with it? Any help would be MUCH appreciated.
EDIT: Fixed a typo.
Button Rollover Function Not Working
I am having some trouble with my button rollover code not working. When I rollover the button the text color should change but doesn't. I am not sure why?
ActionScript Code:
//
var SELECTCOLOR = 0xFF0000;
var OVERCOLOR = 0xCCCCCC;
var DEFAULTCOLOR = 0x000000;
//
gotFocus = function (obj) {
lostFocus(this.prev);
this.prev = obj;
var v = new Color(obj);
v.setRGB(SELECTCOLOR);
};
//
lostFocus = function (obj) {
var v = new Color(obj);
v.setRGB(DEFAULTCOLOR);
};
//
var prev = null;
vid_btn.v = new Color(vid);
vid_btn.v.setRGB(DEFAULTCOLOR);
// give button0 focus when entering frame
if (_global.video_array[0] == this.video0) {
gotFocus(vid_btn0);
}
//
vid_btn.onRollOver = function() {
//trace(this.getDepth());
//trace(this.vft.text)
if (_root.prev != this) {
this.v.setRGB(OVERCOLOR);
}
};
vid_btn.onRollOut = function() {
if (_root.prev != this) {
this.v.setRGB(DEFAULTCOLOR);
}
};
Rollover Stopping Button From Working
On my portfolio site I want to load in each screenshot of my work.
I've used a smooth rollover which will display a brief description about each piece and a launch button that would link to the featured site.
However, the smooth rollover I've used stops the launch button from working.
Can someone please look at my fla and see if they can sort it out? As I've torn all my hair out.
Invisable Rollover Button Not Working
Is their a trick to setting an invisible button behind a movie clip to invoke a rollout action. I can get it to sort of work but it's really buggy. The button is larger and in a layer below the movie clip and when you get to the point where the 2 meet, the movie closes instead of waiting until you rollout.
Any help would be greatly appreciated,
thanks,
eFunk
Rollover Stopping Button From Working
On my portfolio site I want to load in each screenshot of my work.
I've used a smooth rollover which will fade up a brief description about each piece, a launch button that also animates in would link to the featured site.
However, the smooth rollover I've used, stops the launch button from working that is inside the same movie clip.
Does anyone know if they can sort it out? As I've torn all my hair out.
ActionScript Code:
function over(){
nextFrame();
}
function out(){
prevFrame();
}
this.onRollOver = function(){
this.onEnterFrame = over;
}
this.onRollOut = this.onReleaseOutside = function(){
this.onEnterFrame = out;
}
If you want to see the FLA go to the following link to download it. (73k)
http://www.actionscript.org/forums/a...achmentid=9137
Thanks
Button With Rollover,rollout Effect Prob.
Hi there,
I made a button with a rollover,rollouteffect.I made it like this.
Placed a button inside an mc.I coded the button so frame2 to frame12 is the rollover and from frame13 we have the rollouteffect.No probs so far.
Only the button in the first case(without the effects) was placed inside an mc and had following code:
on(press){
_parent.noPass45 = true
this.gotoAndPlay(40)
unloadMovieNum(2);
}
Now with the effects the button becomes an mc and placed inside an mc.So how can I refer this code to the mc where the mc_button is placed in.Must be a _parent prob i guess.
Someone can help out.
Big thx in advance
Grtz,
Modulater
[qustion]rollover Effect Stay On Button
eg. i want my rollover colour to stay when user mouse down on the button... i had ever try to do a stop(); at the down keyframe, but i notice that the button clip unable to put any action script, is there any alternative?
Creating A Rollover Effect Without Using Button Controls PLEASE HELP
HELP!!!
I need to be able to have a movie clip gotoAndStop(2) within the clip (i have a MC acting like a rollover button). But whenever I use a rollover command it makes flash think the MC is a button and won't allow me to click on the dynamically loaded links and text. The only way i see around this is to use an if statement, but i don't know what kind of if statement to use. If anyone has an idea on how to make this work please let me know...
I want to have frames change from within the MC when it is rolled over but without using button commands...they kill my dynamically loaded text and links. PLEASE HELP!!! PLEASE !!!
Simple Button Rollover Effect Help Needed - Please Help
Hi everyone,
I was hoping someone could tell me how was this rollover effect done - can be seen on the small map on the right:
http://www.refinery29.com/
What I want to do is to be able to have the same effect on rollover and rollout just reversed (fade in - fade out).
Please help!!
THANKS
Complex Button Rollover/rollout Effect By Warhero.
Complex button rollover/rollout effect by Warhero under the special effects section of flash mx 2004 tutorials.
I have been following this tutorial but it seems to be incorrect.
In step four, you are asked to create a movie clip.
What is it asking to make a movie clip of????
Am i right in saying, you cannot make a movie clip of nothing?
Am i doing something wrong or is there a step missing?
Hope this can be rectified.
Thank you.
XML Thumbnail Gallery/ Complex Rollover Button Effect
Hi everybody, this is my first time posting. I've been working on the XML Thumbnail gallery tutorial posted up and I wanted to know if it's possible to make a complex rollover effect on an xml button? For example I would like to make this character { rotated 180 degrees above the button as a person highlights the button. How would I go about that.
Also can i add a shadow background to the button?
Thanks in advance
Button Rollover Effects Stop Working When Inside MC
I'm trying to make a PLAY/PAUSE toggle button with rollover effects. I started by making a button object for PLAY and a button object for PAUSE, each with simple rollovers. Then I placed each button in a movie clip called "playpause", and I'm using Actionscript to tell the playhead in playpause to gotoAndStop on a specific frame to display either the PLAY button or the PAUSE button. Now the toggle feature works, but the button rollovers stopped working. Also, the enlarged hit states that I defined in each button stopped working as well, and the open areas in between letters are not clickable. I posted the Flash 8 file. Can someone please help?
Flash Button Rollover/Hover Not Working Immediatly
http://www.ekolinemedia.com/portfolio.htm
Here is the problem: In Opera and IE7, when you hover/rollover over a link you do not get my button animation immediatly. Instead you have to click on the button, and then when you hover over the button you get an animation
IE6 and FF allow the user to play the hover animation immediatly.
I think it is because the user has to allow the "control" to be activated. I am not sure how to fix this though.
Any help would be much appreciated!
First frame:
Code:
if(_root.getBytesLoaded()==_root.getBytesTotal()){
gotoAndPlay(3);
}
else{
gotoandplay(1);
}
Last frame:
Code:
stop();
Rollover Button Effect And Then Text Fades Inside A Particular Area
hey,
can anyone help me put a rollover affect on a button and then once the cursor is over teh button, text within a box would fade in and then once the cursor is out of teh button, the text would fade out....
the text would be inside a box just above the button...
pls, im new to flash mx and it's concept, post your ideas and comments....
thanks
mack
Assistance Needed With Simple Button Rollover Effect - Please Help Guys
Hi everyone,
I was hoping someone could tell me how was this rollover effect done - can be seen on the small map on the right:
http://www.refinery29.com/
What I want to do is to be able to have the same effect on rollover and rollout just reversed (fade in - fade out).
Please help!!
THANKS
Blink Rollover Effect On Rollover
- i have three layers within the OVER state of a button (layer1, layer2, layer3)
- layer 3 has a rollover fade in effect for my button
- layer 2 has a blinking effect for my button
- layer 1 is the canvas of my button
I just want layer 3 to animate 1 upon rollover but has layer 2 keep on blinking while the user has its cursor on the OVER state of the button.
I have the "stop();" actionscript function for the rollover fade effect on my layer 3 but it stops everything! I want the layer 2 effect to continue the blinking.
I have tried extending the keyframe time on layer 2 but that didnt work.
Anything else I should try?
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.
Rollover Working But Rollout Not Working?
i have attached my small fla...
basically i have 5 buttons, each with a rollover and a rollout statement.
when the buttons are rolled over, they tween in scale.
when the buttons are rolled out they are supposed to tween return to normal scale - but for some reason they do not tween, they just pop straigh back into normal size....
any ideas???
[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);
}
Mac Os X Rollover Effect
Does any one know how to do the programming to create the effect that is in the Mac os X panel at the bottom.
If you how Mac Os X you will know what im talking about.
can you please help!
Or can you direct me to a tutorial either on this website or another website out there. thanks a head of time.
Mac OS X Rollover Effect?
Does anyone know where i can find a tutorial that teaches you how to create a similar rollover effect like the one used in the Mac OS X interface. As well as the way the windows open as if they where like "rubber" or something.
Note: If you have Mac OS X than you will know what im talking about.
Mac OS X Rollover Effect....Can Someone Please Help
I would like to create the Mac OS X rollover effect used in the panel at the botton. (if you have a mac os x you will know what im talking about)
I would like to recreate that....can someone point me to a tutorial some where. Or better yet can someone just show me how to do it......
Thanks a head of time........
Pic Rollover Effect. ..... How Did They Do That?
Help! How did they create the photo clips like that? when you roll over a small pic, a larger version of the pic appears. there are several pics in a row, and the large pic changes as you roll the mouse over them. Please check it out and give me step-by step help. Thanx
http://www.jay-z.com click on a name, then click photos.
On RollOver Effect-?-?-?
Hi All,
I tried making a manu scroll in and out of the scene when ever mouse is rolled over the button but i failed. can any one help me with the Actionscript that will be on the MovieClip and the Button.
Look at the script i used: -
Actionscript
______________________________________
//on the movieClip;
onClipEvent (enterFrame) {
yMC = getProperty(_root.yTargetMC,_y);
moveMC = _root.yTargetMC - yMC;
setProperty(_root.MC, _y, yMC + (moveMC/10));
}
Actionscript
______________________________________
//on the keyFrame;
yTarget = 100;
Actionscript
______________________________________
//on the button;
on (rollover){
yTarget = 50;
Please help!!!
Mickeyditex
Rollover Effect Help
Hie,
I'm a newbie to flah so please bear with me.
I'm developing an organization chart for my class and it is done. What i would like to do now is that when the user mouseover on a certain name, i would like to display the picture of that person. I know this is possible to be done but am not sure how.
Thank you in advance for your help.
Rollover Effect
How would i go about creating a rollover effect like the one shown in this navigation bar?
> here <
Bug With Rollover Effect....
//EDIT: Found the solution, see second post
Howdy, I'm trying for a mouseover effect on a dynamically generated menu, a mock-up can be found here.....
http://www.scraf.com/rollover.html
Works fine, only problem is that if you're quick enough with your mouse you can "rollOut" leaving the button in "rollOver" state.
Anyone have a cunning workaround for this one?
Two button's, here's the code....
code:
button_btn.onRollOver = function(){
this._y = -200;
rollover_btn._y = 200;
}
rollover_btn.onRollOut = function(){
this._y = -200;
button_btn._y = 200;
}
TIA (MX 2004)
Rollover Effect
I'm creating a button with a change of color rollover effect for text.
The only problem I'm having is that it flickers and unless you have your mouse over the perfect spot, it doesn't even change color.
When creating the symbol, should the up position be one color and the rest, be the other color? I'm new to flash and a little unsure. I would like the rollover to be solid and distinguishable, not flickering.
Any help with this would prevent a bit of hair pulling on my part.
Thanks a million.
|