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








[f9][AS2] RollOver Twitch That I Can't See


Greetings all,
I have made a little eCard game for the company I work for. The CEO is reporting an issue with it that I can't see on any other machine.
Here's a link to the eCard:

http://sledex.centresource.com/

The problem is:
After clicking the Play button, there will be a few tabs at the bottom left. When you click them they should pop up a bit - if you click on them again they should:
"Need an eCard" = opens a new window of the company's website
"Send To A Friend" = pops out a mailTo form
"High Score List" = pops out a High Score Table

He's saying that when he rolls over them they twitch & flutter between popped out & put away. If he clicks they go away (when he's able to click) - he's not able to interact with them in any intended way. He's not able to click to open the websites window, he's not able to open the Send Friend form, & he's not able to view the High Score list. I've tested this on several other computers (both Mac & PC) & am not able to reproduce it. There's also NOTHING in the code that would cause a conflict (I've made sure several times). I attempt to explain that it's got to be something with his computer but he will not accept that.
So, my question is - Does anyone else have any issues with this?
Just go to the page, click Play, then mess around with the tabs in the bottom left (green one, red one, blue one) & see if you encounter any problems, or if they don't seem to be doing anything, or if they twitch.

Thank you in advance!




FlashKit > Flash Help > Flash ActionScript
Posted on: 12-21-2007, 02:40 PM


View Complete Forum Thread with Replies

Sponsored Links:

An Internal Twitch
Whenever I have a movieclip play on this certain project, right at the end the inside of the image twitches in toward the left. I checked and it looks like all layers are matched up perfectly, any suggestions?

View Replies !    View Related
Why Images Sometime Twitch
quite a silly question which i've nvr seemed to figure out

ever encountered times when after exporting ur movie, ur images move like a pixel or 2? like a part of the jpg image shifts a little? sometimes during fading, other times during rollover...

any reasons?

many thanks

View Replies !    View Related
Why Does Flash Sometimes Twitch When Animating?
I have found that when you animate something, especially scroll something, often flash has little twitches about every second. I am currently working on an animation that scrolls a bunch of pictures across the screen. And it has a little twitch in it about every second like a piece of the picture is trying to catch up. It does this whether or not I use action script or just animate it.

I did notice that changing the framerate can change the twitching a bit. But I want it to go away. Please help me. This has been a problem for as long as I can remember.

Thanks

View Replies !    View Related
Motion Tween Pic Twitch Thingy
Hi,

I have some pics on a site that I set up as a flash slide show. They basically just fade in and fade out as each one comes up.

There's this wierd picture twitch thing though that's happening and I don't know why. Can someone advise me on this? It's really bugging me. You can check it out at www.davidfraga.com/chicbeads

Thanks,
David

View Replies !    View Related
Photo Graphic Easing In/out Twitch Bug
Hello,

I've made a few photo slide shows over the years, and I've always noticed that the image twiches in the middle slightly when I fade them in and out, using brightness not alpha. Has anyone else had this problem and if so do you know a way around it?

Tom

View Replies !    View Related
Mx.transitions.Tween -> Twitch Workaround
Hi everybody

Since I spent nearly all evening trying to figure out what was going on with some strange twitching stuff going on with the Tween Class (never used it before), I wanted to share it with you. First of all the code in question:


ActionScript Code:
// set the fps for the movie high (+30)
var easeType = mx.transitions.easing.Bounce.easeOut;
this.createEmptyMovieClip("menuContainer", this.getNextHighestDepth());
MC = menuContainer.createEmptyMovieClip("clip1", 0);
MC.createTextField("tField", 0, 100, 100, 0, 0);
MC.tField.autoSize = MC.tField.border = true;
MC.tField.text = "See it twitch!";
MC.onRollOver = function() {
    INTween = new mx.transitions.Tween(this, "_x", easeType, this._x, 3, .3, true);
    INTween2 = new mx.transitions.Tween(this, "_y", easeType, this._y, -3, .3, true);
};
MC.onRollOut = function() {
    OUTTween = new mx.transitions.Tween(this, "_x", easeType, this._x, 0, .7, true);
    OUTTween2 = new mx.transitions.Tween(this, "_y", easeType, this._y, 0, .7, true);
};
this.createEmptyMovieClip("menuContainer2", this.getNextHighestDepth());
MC2 = menuContainer2.createEmptyMovieClip("clip1", 0);
MC2.createTextField("tField", 0, 100, 140, 0, 0);
MC2.tField.autoSize = MC2.tField.border = true;
MC2.tField.text = "See it twitch!";
MC2.onRollOver = function() {
    INTween = new mx.transitions.Tween(this, "_x", easeType, this._x, 3, .7, true);
    INTween2 = new mx.transitions.Tween(this, "_y", easeType, this._y, -3, .7, true);
};
MC2.onRollOut = function() {
    OUTTween = new mx.transitions.Tween(this, "_x", easeType, this._x, 0, .3, true);
    OUTTween2 = new mx.transitions.Tween(this, "_y", easeType, this._y, 0, .3, true);
};
stop();


now try this one:


ActionScript Code:
// set the fps for the movie high (+30)
var easeType = mx.transitions.easing.Bounce.easeOut;
this.createEmptyMovieClip("menuContainer", this.getNextHighestDepth());
MC = menuContainer.createEmptyMovieClip("clip1", 0);
MC.createTextField("tField", 0, 100, 100, 0, 0);
MC.tField.autoSize = MC.tField.border = true;
MC.tField.text = "See it NOT twitch!";
MC.onRollOver = function() {
    INTween = new mx.transitions.Tween(this, "_x", easeType, this._x, 3, .7, true);
    INTween2 = new mx.transitions.Tween(this, "_y", easeType, this._y, -3, .7, true);
};
MC.onRollOut = function() {
    OUTTween = new mx.transitions.Tween(this, "_x", easeType, this._x, 0, .7, true);
    OUTTween2 = new mx.transitions.Tween(this, "_y", easeType, this._y, 0, .7, true);
};
stop();


As you can see, the twitching is gone. This is because the time given for the transitions are the same.

I have no idea why this happens, it really sucks not being able to have different speeds for In/Out tweens. Does anyone have an explanation for this as well as a workaround? thanks!!!

Proupin

View Replies !    View Related
Having A Movie Clip Follow Another Symbol Twitch Glitch
Alright, I'm having a problem with my interactive thing. There's a twitch when this thing follows the other movie clip. Here, look-
http://img.photobucket.com/albums/v4...efka/Chase.swf

This is the action script I have for the thing that chases(the thing being chased has the instance name of chasee)-


ActionScript Code:
onClipEvent(load){
speed=4
}
onClipEvent(enterFrame){
if(_root.chasee._x > _x){
_x += speed
}else if(_root.chasee._x < _x){
_x -=speed
}else if(_root.chasee._x == _x){
_x +=0
}
if(_root.chasee._y > _y){
_y+=speed
}else if(_root.chasee._y < _y){
_y -= speed
}else if(_root.chasee._y == _y){
_y +=0
}
}

View Replies !    View Related
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.

View Replies !    View Related
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.

View Replies !    View Related
RollOver Action. I Need It To Stay In RollOver Mode When Mouse Is Off.
I have a movieclip with this action attached:


PHP Code:



on (rollOver) {
    loadMovie("logo_intro.swf", "bottom_logo");








When I roll over it, it loads the movie correctly. Yet, How do I get the movie to stay once the mouse is off ite movieclip/button area?

View Replies !    View Related
Rollover On Top Of Rollover OR Exit Flash Reset
So I have been working on a project for the last two days now that requires several layerd boxes to swapDepths in order for them to expand correctly. I have been doing this with a on(rollover) tag on a hit area button which then expands to a full screen.

PROBLEM
I cannot figure out how to add a fuctioning button to on top of this full rollover.

I have attached the files so that they may be viewed below
http://www.jdhillen.com/flash/dc_test.fla
http://www.jdhillen.com/flash/dc_test.swf

If you scroll over the yellow box it will expand and show a blue button. I'm trying to get the button clickable, but I'm afraid the way i built the flash doesn't allow me to do so.

Any advice would be greatly appreciated. Thank You

View Replies !    View Related
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!

View Replies !    View Related
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...

View Replies !    View Related
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?

View Replies !    View Related
Complex Rollover -rollover Sounds
Hello,

I've used the complex rollover tutorial and it works great. My only problem is attaching a sound to the rollover. The rollover is set to rewind when you roll off the navigation link and this replays the rollover sound which I don't want. Is there a way to attach the sound to only the rollover?

thanks for any help you might have

View Replies !    View Related
On Rollover Doesnt Like It When It's In Another MC With On Rollover :(
Ok, so I have a menu that slides out when you rollover a small tab, works great, anyways, the menu has another MC in it, a button, that has a on(rollOver) Attached to it, so that an animation plays when it's rolled over. Why doesnt this work? I mean I guess it's because there's a duplicate rollover command, but whats the work around to this?

View Replies !    View Related
RollOver Inside Another RollOver
Hello,
Is this possible?
I have a movie clip with an on (RollOver) function. I have attached another movie to load dynamically with the attachMovie function, but it's on (RollOver) is ignored. Targeting the attached movie clip within the RollOver function doesn't work either. I'm trying to create a menu button with a submenu that opens within it. Thanks!

View Replies !    View Related
RollOver Inside Another RollOver?
Hello all,
Is this possible?
I have a movie clip with an on (RollOver) function. I have attached another movie to load dynamically with the attachMovie function, but it's on (RollOver) is ignored. Targeting the attached movie clip within the RollOver function doesn't work either. I'm trying to create a menu button with a submenu that opens within it. Thanks!

View Replies !    View Related
One RollOver-function Above Another RollOver
Is it possible to have two areas with rollOver/dragOver funktions to work att the same time, one inside the other.

I have one big button with this code in it:

Code:
on (rollOver, dragOver){
this.gotoAndStop("active");
mx.behaviors.DepthControl.bringToFront(this);
}

on (rollOut, dragOut){
this.gotoAndStop("closed");
}
And i need a smal area, in a Movie Clip places above the big button, to trigger another rollOver/dragOver event. Without killing the rollOver/dragOver from the big button.

I tyed to use rollOver, dragOver and rollOut, dragOut
but it did not work.

Now i have solved it without the second button. I use this code for the second "moseOver" function:

Code:
if ((_root._xmouse>210) and (_root._xmouse<495) and (_root._ymouse>282) and (_root._ymouse<300)) {
this.mcTjanster.gotoAndStop("t1");
}
and it works but is to complicated for my us.

Is it possible to solve it in an more siple way?

View Replies !    View Related
Rollover Inside A Rollover...?
Hello,

I was just wondering if it is possible to get 2 rollovers working at the same time which occupy the same space (one on top of the other). I've created a universal thumbnail for my site with a rollover effect which I want to use several times. However, each little thumbnail icon wants to load up a different swf, so each one also needs individual behaivour. So travelling up a level, I have a rollover on the parent movieclip occupying the same space for the individual behaviour.
I am finding that the uppermost rollover is the one that works, and any rollovers beneath it dont, - which makes sense really. I was just wondering if it was possible to get both working...

Can anybody help?
Or am I going about this the wrong way?
Is there a better solution?

Any help appreciated.

Thanks

View Replies !    View Related
A Rollover/rollout Movieclip With Rollover/rollout MC's Inside It
Hi there, I am trying to figure out how to make a bottom bar similar to the one seen on www.1000pis.com how he's got clips with animations inside the bar- here's what I've got so far: http://cg.psdsliced.com/test1/ - as you can see I have a date/time MC inside the bar_mc which is working fine but whenever I try to have a new rollover/rollout movieclip (or button) inside the bar_mc it won't work/won't show rollover animation.

so does anyone know how the guy at 1000pis.com does it or can offer me any help at all?

View Replies !    View Related
[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);
}

View Replies !    View Related
[F8] Rollover Clips Inside Rollover Clips?
I've got a movie clip that you rollover (menu1_mc) which contains other movie clips (m1_1, m1_2, etc.) which also have rollovers. I've got the following script in there, but it doesn't seem to hit the nested clip rollovers. I also attached a sample fla that you can see what's going on.

Another thing, if anyone may have an idea on this, I also tried making the rollOut do a gotoAndPlay("out") so it would look smoother, but I got lots of flickering as it jumped between the in and out frames...very wierd...


Code:
stop();
for (i=1; i<3; i++) {
this["menu"+i+"_mc"].onRollOver = function() {
this.gotoAndPlay("in");
this.swapDepths(1000);
};
this["menu"+i+"_mc"].onRollOut = function() {
this.gotoAndStop(1);
};
}
menu1_mc.m1_1.onRollOver = function(){
this.gotoAndStop(2);
}
menu1_mc.m1_1.onRollOut = function(){
this.gotoAndStop(1);
}
menu1_mc.m1_2.onRollOver = function(){
this.gotoAndStop(2);
}
menu1_mc.m1_2.onRollOut = function(){
this.gotoAndStop(1);
}
menu1_mc.m1_3.onRollOver = function(){
this.gotoAndStop(2);
}
menu1_mc.m1_3.onRollOut = function(){
this.gotoAndStop(1);
}
Thanks!!!

View Replies !    View Related
Movie Clip W/rollover Inside Another Movie Clip W/ Rollover
I have a menu that pops up on roll over, and I have movie clips inside that are supposed to have on rollover and on release actions, but they're not working. It seems that the whole menu is active constantly. Here's the menu script:

this.onRollOver = function() {
if (!active) {
this.gotoAndPlay("rollover");
}
};
this.onRollOut = function() {
if (!active) {
this.gotoAndPlay("rollout");
}
};


and in the root the script for one of the menu items is:

mainmenu_mc.menu_mc.solo_mc.onRollOver = function () {
this.gotoAndPlay (2);
};
mainmenu_mc.menu_mc.solo_mc.onRelease = function () {
_root.my_mc.loadClip("contentpages/turf_solo.swf", _root["container"]);
_root.recent_projects._visible = false;
};

Any advice would be greatly appreciated!

View Replies !    View Related
Rollover
you know in sites such as the old mtv and requiem for a dream, they have this rollover effect that is cool. in one instance when you rollover it will fade away obviously from the alpha channels, and in the old mtv site after rolling over it'll slowly fade back in


HOW DO YOU DO THAT?

View Replies !    View Related
Rollover Help?
Hi.

Is there a way to have a button change the text in a different layer when the mouse rolls over it? The goal is to have it behave similar to a Javascript rollover. I've just recently started with Flash, so I don't know how to do everything yet.

-Joyeuse

View Replies !    View Related
Rollover
How do i get an image to show when a button is rolled on
and then disappear on rollout.

ta.

View Replies !    View Related
Rollover
someone help me please!!
- I am trying to do a rollover where a picture appears on the right side of the screen when the mouse is over the button (on the left side).
-I have all the staes of my button set thats not the problem

-The problem is that I can get to the action script and do
on (rollover)
but I dont know what action to assign to get my picture to appear. Please help me!
Thank you so much

View Replies !    View Related
Rollover Help
to anyone who can help me,
I tried the following (whats below my note)..and i can get the image to be invisible at start...but i stil lcant rollover my button and get the image to popup, the image i want to appear when i rollover the button is called letter1 what is the exact script wording? and I put it under the button i want to be over when i want it to appear is this correct?




********

Quote:




Originally posted by dzlpwr
on(rollOver){
clip._visible = 1;
}

The clip's visiblility needs to be false on load:

onClipEvent(load){
_visible = 0;
}

Then add code to the rollOut state if you want it to be visible again:

on(rollOut){
clip._visible = 0;
}

View Replies !    View Related
On(rollOver)...
When making a button, on the rollOver stage I want the MC to play for as long as the mouse is over it! The way I have it now it only plays once, on(rollOver) { tellTarget (HOME) { play(); }} How do I make it repeat an infinite number of times, as long as the mouse is on it? Anyone? Thanx!

View Replies !    View Related
Rollover
Hi

I would like to know if it is possible to do a rollover on an image when rolling over something else (such as a button)

I am doing an interactive mall map and I have the image of the mall and buttons on the side for each store. I would like to be able to hover over the button and have another picture I have of the mall with the store highlighted appear.

Any suggests, comments and tips would greatly be appreciated.

Thank you!
- Stephanie

View Replies !    View Related
Rollover
Hi All
I am trying to do some animations on my Main Menu buttons, but this animation is working only alternatively, ie, when moving the mouse on the button it works, and the next time it does not, then I move the mouse again and it works and the next time it does not. I cannot figure out the problem.
I am using the following code:-

on (rollOver) {
homeAnim.play("start");
}

Can you tell me what is wrong please?

View Replies !    View Related
RollOver Again
I'm not sure that I was clear enough in my last post so I come back with may fla!!!

The problem is that if I pass over my button too fast, it stay on the "over" position.

Can someone have a look on my code and tell me what the problem is?

Thanks a lot

View Replies !    View Related
Rollover How 2
I want a ball to move to a certain y position on rollover.
Here is my code on the mc.

onClipEvent (enterFrame) {
this._y += (newy-lasty)/5;
}

and here is the code on my button

on (rollOver) {
lasty = _root.rollover._y;
newy = 225;
}

thanx in advanced people.

What seems to be the prob is that the mc wont recognize the variables declared in the button.

View Replies !    View Related
On (rollover)
got a problem
please help
i have a movie clip and a button on 2 layers
button's alpha is 0% and is over the movie
so when i rollover it movie clip has to change
and when rollout come back to it's former view
it's rather simple but nevertheless the script doesn't work
even don't know why
if u have a minute plz look
thanks in advance
fla is here
http://www.geocities.com/cheshirskaya/meu.fla

View Replies !    View Related
Rollover Help
I have a button that when I rollover it I want it to play a MC
"1-mc" and rollout stop anywhere in the MC.

The MC has a stop() action in the first frame in frame 5 a gotoAndplay (2)

On the button:

on(rollOver){
1-mc.gotoAndPlay(2);
}
on(rollOut){
1-mc.gotoAndStop(3);
}

But nothing happens

Any advice, code examples or tutorial would sure be appreciated!

View Replies !    View Related
Rollover Help
I have a button that when I rollover it I want it to play a MC
"1-mc" and rollout stop anywhere in the MC.

The MC has a stop() action in the first frame in frame 5 a gotoAndplay (2)

On the button:

on(rollOver){
1-mc.gotoAndPlay(2);
}
on(rollOut){
1-mc.gotoAndStop(3);
}

But nothing happens

Any advice, code examples or tutorial would sure be appreciated!

View Replies !    View Related
Rollover Help
I have a button that when I rollover it I want it to play a MC
"1-mc" and rollout stop anywhere in the MC.

The MC has a stop() action in the first frame in frame 5 a gotoAndplay (2)

On the button:

on(rollOver){
1-mc.gotoAndPlay(2);
}
on(rollOut){
1-mc.gotoAndStop(3);
}

But nothing happens

Any advice, code examples or tutorial would sure be appreciated!

View Replies !    View Related
Help With Rollover Please
thanx in advance.....


is there a way to check if rollover is still true on a certain frame ...say 50..........and if rollover == true then stop....else play

View Replies !    View Related
Rollover
I’m working on a Flash site at the moment and I have some text that slides in when you rollover another button, but when you roll out the text is supposed to disappear but it doesn’t unless you go and rollover the button again.



This is the script I have.



on (rollOver) {

tellTarget (“homeroll”){

play 0;

}

}

on(rollout) {

tellTarget (“homeroll”) {

stop 0;

}

}



Do you know a way to solve this??

View Replies !    View Related
Rollover Help
I'm having some trouble here. What I want to do is make a animation continue to animate after you click on the button. The animation works but the problem is that after you move the mouse away from the button, it disappears. how do i get it to work? so after you press it, it'll start playing from frame 75 to frame 101 and continue to loop until u press another button. there's a stop action in the first frame of the animation and a gotoAndPlay(75) at frame 101 (the last frame).

thanx. any help is appreciated.

on (rollOver) {
with (animation) {
gotoAndPlay(2);
}
}
on (rollOut) {
with (animation) {
gotoAndStop(1);
}
}
on (press) {
with (animation) {
gotoAndPlay(75);
}
}

View Replies !    View Related
RollOver
Hi
I have a problem with rollOvers and rollOuts. I have a big button and over the button is a movieclip. I wanted the movieclip play when I roll Over the button. Thats all easy but now... In the movieclip are some other buttons and the movieclip lies over the button so when I rollOver th buttons in the movieclip it is like a rollOver for the big button under the mc. what can I do that I can press the buttons on the mc without rollOut the big button ? I can not explain that nice so heres an example what I mean.(attachment)
thanks for your help.
Dave

View Replies !    View Related
RollOver
i have a problem with rollOver effects.
situation:
i'm trying to have a button with animation, say when i rollOver the word "lala" a box behind it will fade in which will take 10 frames or so. now say i remove my mouse from that button before the end of 10 frames i want it to reverse the fade.

problem:
now when i remove my mouse off the button it's still fading from clear to solid. how can i do it so it will rewind from where it start off from.

View Replies !    View Related
RollOver
Using FlashMX. On mouse rollOver i want the textbox to scroll. That works just fine. The problem is that I want it to be continuous. That is to say, as the mouse stays over the button i want the text to keep scrolling down. When I use on(rollOver), I need to keep moving the mouse off and then back on the button for it to keep scrolling additional lines. Anyone know of a trick to keep checking that the mouse is over the button? Sorry if the question is too basic.

joy,

Fahd.

View Replies !    View Related
RollOver
Actionscript has a command for a button to do something on(rollOver). Is there anything for something along the lines of through(rollOver). That is to say, how can i check if the mouse is still on the symbol? Not just when it passes over the symbol the first time. Thanks.

Also.

Anyone know how to integrate code like tagboard or zonkboard into a flash site?

View Replies !    View Related
End Rollover
Could someone please suggest a good way to make sure that the rollover effects on my buttons don't keep going and going and going?

I know ways to stop it but they aren't very efficient. thanks to anyone with advice!

http://www.axiomflash.com/new.htm

View Replies !    View Related
Every Second Rollover
probably a simple question, i have a button which has some basic actionscript:

on (rollOver) {
tellTarget ("lights") {
play();
}
}

But when i test the movie, the movie "lights" DOES NOT WORK every second time you rollover.... works the first, not the second...weird??


preview at:
http://www.users.on.net/derect/mick/index2.htm

View Replies !    View Related
Rollover
hey guys , ive just finished making up a rollover button. for some reason its not working when i load on the net. it worcs on mi local sweetas. ive given the button an instance on tha main stage "jol_tM". itz an external movie that loads in2 tha main movie, mayb thats a possible problem..heres the code. ne ideas?



on (rollOver) {
_root.jol_tM.gotoAndPlay(2);
}
on (rollOut) {
_root.jol_tM.gotoAndPlay(1);
}
boyzsyte

View Replies !    View Related
Rollover Within A Rollover
Hi. Here's an example of what I'm trying to do:

I have a square, and when you rollover the square, 3 dynamic textboxes appear with text that it retrieved from an external file. Now, I'd like to be able to rollover the textboxes, and have a circle or something appear next to them....but it appears you can't have a rollover within a rollover. Any suggestions or workarounds? Thanks.

View Replies !    View Related
Another RollOver ...
[frustration]

ok -- WTF is wrong w/ this animated button?

[/frustration]

cheers.

View Replies !    View Related
Rollover Plz Help
I want too roll over a movie clip and have it play somewhere else can somebody help me


thx

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved