Animation To Play When Mouse Over The Area But Still Other Times?

May 3, 2009

I'm creating a mini site for a course I'm doing and I have a row of buttons that have an image of a character that I want to animate when the viewers mouse goes over them. I'm not good with action script and I'm stumped on what to look up when googling for an answer.

Ideally I would like the row of buttons (that the chacters sit in - and when they are clicked they go to that characters main page) to animate - ie blink or move slightly but when the viewer hovers their mouse over them they then go into a new animated sequence - so I guess that would require two movieclips - so that would mean that the first animation of a blink would run all the time (I can do that bit! ) but how to get it to switch to another movieclip for the duration of the mouse hover - and to only play when the mouse is in that area (I've done scrolling image bars before and I hated the way it scrolled even when the mouse was no where near the images!)

this is a very rough bare bones of the flash page I'm doing - I've attached it to my main website just so others can see what I'm talking about. [URL] all the squares at the bottom will have a characters in them and I want them to do very subtle things like blink or the occasional wave but when someone goes to click on them they wave or jump around - this would stop if the viewer then moves the mouse away and it goes back to the initial movieclip.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Time-based Animation - Animations To Play At Certain Times?

Aug 29, 2006

I recently got back into animating and I need some help with my latest project. I have a number of different animations that I would like to be played on the inside of a tv, however I would like for these animations to play at certain times. For example, at 9:00 pm (real time) the tv displays the animation of the character sleeping. I'm not sure how to do this, and I'm not sure if I need an internal clock.

View 6 Replies

ActionScript 2.0 :: Certain Frame Within The Mc To Play If The Mouse Is At A Certain Area Of The Stage?

Aug 22, 2004

I have an mc, that i need to have follow the mouse on the x axis.I have that just fine.But my problem is that i need a certain frame within the mc to play if the mouse is at a certain area of the stage.For example,if the mouse is at the x coordinate of 235 to the left, frame 2 of the movieclip will play. I uploaded just a test fla that i was practicing on.

View 5 Replies

ActionScript 3.0 :: Mouse Over And Mouse Out - Play An Animation

Jul 7, 2010

I have a movie clip working where on rollover it sends it to scene 2 to play an animation but I don't know how to bring it back to scene one once you roll off of the clip. I have so far:

R1.addEventListener(MouseEvent.MOUSE_OVER, do1);
function do1(event:MouseEvent):void
{
gotoAndPlay(2)
stop();
}

what needs to be added to send it back to scene 1 after you MOUSE_OUT?

View 1 Replies

ActionScript 1/2 :: Decrease Hit Area - That Mouse Out Of To Make The Drop Down Area Pull Back?

Jul 28, 2009

i have a drop down menu am working on and each button tab (although they are not button instances !) when clicked opens up the "drop down" section which you can mouse over to choose another specific button etc - if you mouse out of that drop down area then it pulls back up to the original tab state ..  what do i change to the code below to decrease the area that you mouse out of to make the drop down area pull back .....at the moment it at least two inches on the screen below and to the right of boundaries of the drop down box before it pulls up - i want to it pull up as the mouse leaves the boundary box .... hope this makes sense .... there is some part of the actionscipt below that controls this but can work out which bit and how to change it !!! (am guessing the x mouse and y mouse bits - but how to change it ???)

[Code]...

View 1 Replies

ActionScript 2.0 :: Load The Area Of The Xml File Into Text Area On Mouse Click?

May 21, 2004

I would like to first add the xml to my flash. Fine I can do this.But I have a number of buttons, where when I click say CW1, i get the information from the XML file with a node of CW1. I have all the xml set up fine.As I have about eight different postcode types.

ST, CW, CH, TF, WV, WS, DE, SK, SY, and each of these may have numbers that follow, i.e ST1, ST2, ST3 and so forth.

So I can only assume that the postal area could be the main nodes, and the numbers inside the child nodes, am I right thus far.o how can i load the area of the xml file into my text area on mouse click, pulling the information relating.

View 11 Replies

ActionScript 2.0 :: Declare An Area Then If Mouse Is Clicked In Area Then

Nov 29, 2009

I'm programming a game for my Advanced Higher Computing class, and am doing a whack a mole style game. I am trying to program for the bit where when you click the moving movie clip, then the score is increased by 1.

if(mousedown){
if(movieClip contains mouseXCoOrd){
if(movieClip contains mouseYCoOrd) {
score ++
}
}
}

View 3 Replies

ActionScript 2.0 :: Click 2 Times On The Next Text Area To Move The Focus?

Sep 25, 2006

I initialized the variables, the TABBING thing doesn�t work and when I select something from the combo box, seams that the focus doesnt move to the next are even if I click on it, I need to click 2 times on the next text area to move the focus.HERE is the code that i am using...

var a_1 =""; //text areas inputvar a_2 =""; //text areas inputvar a_4 =""; //text areas inputvar a_6 =""; //text areas input var cb_slang:Object = new Object(); //combo boxm_s_lang.addEventListener("change", cb_slang);cb_slang.change = function(){ m_g_slang = m_s_lang.value;}var cb_stype:Object = new Object(); //combo boxm_s_type.addEventListener("change", cb_stype);cb_stype.change = function(){ m_g_stype = m_s_type.value;}

View 2 Replies

Making An Image Transparent In The Area Of The Mouse While Mouse Button Is Down?

Mar 25, 2010

I would like to make a flash movie with a picture, where when the user holds down the mouse button, part of another picture will emerge in that general area (like a magnifying glass looking into another dimension).

Technically, my idea was to make a flash file with two images, and then code the mouse to be able to make the top picture transparent in a circle-like area around the cursor, while the mouse button is down.

But how to do that? I am using Flash CS4, but I don't really care if the solution is in AS2, or AS3, as long as it works

View 2 Replies

ActionScript 2.0 :: Set Separate Times For Each Animation?

Feb 21, 2007

I've been trying to do some animation based on setInterval. I pretty much got it working exept for one thing! I want to set separate times for each animation. Se the code below or download the sourcefiles here.

So the problem is that I want the SetInterval time to be the current value from the time array, as it it now I can only set the interval time once here:

ActionScript Code:
txt_obj.onLoadComplete = function() {
intervallID = setInterval(slideIt, time[current]);
};

and never again, what I want is that after each time the slideIt function has run a new value from the time array will be sent to the interval and that will indicate when to run the intervalfunction(slideIt) again..

ActionScript Code:
stop();
import classes.Slide;
//INTERVAL TIMES

[Code]....

View 1 Replies

ActionScript 3.0 :: Tween Animation Looping 4 - 5 Times Without Reason

Apr 1, 2011

I have constructed this animation of a broken up image. If I just use the nested for loop in a new file, it will run normally but when i try to let it run after a TweenLite which has an onComplete function, the animation will be looped 4-5 times. [URL]

View 2 Replies

Professional :: Rotate A Symbol On The X Axis Multiple Times For An Animation

Jun 6, 2011

I am trying to rotate a symbol on the x axis mulitple times for an animation I am doing. The problem is everytime I try to do a complete rotation, the symbol rotates fine until I hit 180 degrees, but once I go past that mark, the symbol just starts rotating backwards. Is there a certain way I have to do this in order to get a complete rotation in one direction?

View 1 Replies

Loop 3 Times And Play On?

May 8, 2009

I have a movie in which three balls bounce up and down 3 times and then bounce high and trade places, then they bounce 3 times and repeat.Instead of bouncing three times I would like to shorten it with a loop.How do I tell the movie to loop from frame 156 back to frame 106 three times, and then go to frame 157 and play?

View 10 Replies

Eyes Follow Mouse Cursor - Increase "mouse Sensitive" Area?

Aug 27, 2009

I have created a small flash movie where the eyes of the character follow the cursor. Its based on this one here Only problem is, it only works while the mouse is actually over the movie. Is there any way to increase the sensitive area to the whole screen without increasing the actual size of the movie?

View 1 Replies

Professional :: Existing Animation Play Within The Final Flash Animation?

Jan 15, 2012

I have a certain set of motion twains that I've successfuly completed, they constantly loop right now (default), and is saved in the SWF file.I'd like to take that finished looping animation, and insert it within another animation (a) that can be played with a play button, and stopped/resetted with a stop button.How do I insert the completed looping animation into the main animation? And is there something special I have to do in the actionscript of the start and stop buttons so that the "inner" looping animation will start and stop with the "outer" main animation?

View 1 Replies

ActionScript 2.0 :: Play Timeline 3 Times For Banner Ad

Aug 18, 2005

I am trying to play a banner ad 3 times and then stop for a banner ad. Does anyone know how to do this using actionscript. I have tried and failed.

View 2 Replies

How To Make A Simple Animation Within Text Area

Dec 6, 2009

I am getting familiar with the Flash animations I am trying to make a simple animation within the text input area i.e.

1.FAN BASE
2.FA NBASE

What I want is the letter N to move slowly towards letter B.I have done motion tweening but it doesn't work -either the whole text is moving left right  or the letter N is simply skipping to the second position without smooth animation.( there's no error on motion tween by the way)

View 4 Replies

ActionScript 3.0 :: Play The Out Animation When The Over Animation Has Completely Finished

Apr 27, 2009

i have a over and out animation but i only want to play the out animation when the over animation has completely finished and the same with out animation. i have this code

[Code]...

View 2 Replies

ActionScript 2.0 :: Play Movieclip At Random Times On Load.

Mar 28, 2005

Is there an actionscript to play a movieclip at random times? This is when it reached the end frame of the timeline.

View 6 Replies

ActionScript 2.0 :: Play Entire Movie 2 Times Then Stop?

Sep 5, 2002

I learned to play a movieclip a specified number of times then stop. I need to stop an entire .fla (or, it may become a scene, but for now it's the only content) after it loops TWO times only.The .fla has one frame containing graphics and text on separate layers and 4 movieclips on different layers. The movieclips have no actionscript in them right now. They are essentially tweens over staggered times.

In fact, right now there's no actionscript anywhere in this particular .fla.How can I play it two times then stop. Also, I need to be able to accomodate further stuff after this.. that is, the movie is not yet been completed..it was just a start, but it's only this part that *is* completed I need to loop twice.

View 7 Replies

ActionScript 2.0 :: Play Movieclip At Random Times On Load

Mar 28, 2005

Is there an actionscript to play a movieclip at random times? This is when it reached the end frame of the timeline.

View 6 Replies

ActionScript 3.0 :: Count Number Of Times Mouse Click / Whenever It Is Clicked

Sep 14, 2011

I want to count the number of times the mouse click, whenever it is clicked. I read about the mouse events in flash but I am unable to complete is Here is my trial

1) Created an oval with the oval tool and by using text tool I wrote START on it and made it a button by clicking CREATE A SYMBOL.

2) Whenever that oval button(Start) I need to count the number of times I clicked on it.

View 2 Replies

ActionScript 3.0 :: Loop On The Main Timeline - Play 3 Times And Stop

Jul 22, 2009

I have a very simple banner that I would like to play 3 times and stop. How can I do that in Actionscrip 3.0?

View 4 Replies

Actionscript 3.0 :: NetStream.Play.Start Fires Multiple Times

Jul 28, 2009

I'm working on a project using a MVC design pattern where flvs are played form a xml playlist. I noticed something strange in the Output window. For the first flv the NetStatusEvent NetStream.Play.Start fires once, the second one fires twice, the third one three times....

Here is the part of the code where I load the video :

Code: Select allpublic function loadVideo(url:String):void
{
_nextBtn.mouseEnabled = true;
_playHead.x = 0;

[Code].....

View 1 Replies

ActionScript 2.0 :: Attatching A Movie Clip To Play 3 Times Through Then Destroy()?

Feb 25, 2007

How would i attatch a movie clip, call it to play three times through then remove it from the stage when a button is pressed? Would i have to use an interval or are there other methods?

View 14 Replies

ActionScript 3.0 :: MOUSE_OVER Listener - Animation Is Triggered Both On Mouse Over And Mouse Out Events

Aug 2, 2009

I have a movie clip I am using as a button (instance name btn1) and I added an event listener to it (using the following line): btn1.addEventListener(MouseEvent.MOUSE_OVER, animate1); the function "animate1" triggers some small animation when the mouse is over the movieclip. my problem is that the animation is triggered both on mouse over and mouse out events.

View 5 Replies

ActionScript 3.0 :: Use A 'master' Sound Instance ,that Can Play Multiple Times Simultaneously?

Jul 27, 2010

Imagine this scenario:The application is a Game, where the enemy characters can 'attack' the player, and each time they attack the 'Attack.mp3 file is played from the libraryNow my question is, if I have to create a new instance of the MP3 file in the memory, each time playing it, or can i use a 'master' Sound instance ,that I can play multiple times simultaneously.(similarly I can use one 'enemy.jpg' bitmapdata, that I can then copy to the screen with copyPixels, and only having it in the memory just once )IE if i have 50 'Enemy' characters running around the game

View 1 Replies

Text Appear When The Mouse Over An Area?

Feb 25, 2012

I want to have 3 diffrent words on the screen and when you mouse over those 3 words, on each word and diffrent text box appears..... How hard is this? I am using SwiSH Max 4

View 1 Replies

ActionScript 2.0 :: Follow Mouse (only In Certain Area)?

Oct 9, 2009

I found several tutorials that work great for having movie objects follow the mouse but I haven't been able to find one that restricts it to only a certain area. This is one of the tutorials that I was looking at: http:[url].......What I basically want to do is have this hanging lamp tilt either left or right depending or where the mouse comes from.

View 1 Replies

ActionScript 2.0 :: How To Define A Mouse Area

Mar 20, 2008

I made a scroller script, but now I am trying to figure out how to define the area in which the scroller responds to the mouse? Currently it responds to the mouse position no matter where the mouse is on the page, but I want it to just respond when the mouse rolls over a small portion of the page.

[Code]...

View 1 Replies







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