ActionScript 2.0 :: Make A Movie Clip Play When Eave A Certain Frame?
Jan 26, 2010
I'm working in CS4 on AS2.
I have a series of buttons that when clicked go to certain frames which all display different content. I have a unique movie clip on each one of these frames that has an initial play in, followed by a loop, and finally a play out for when they leave that frame.
I have it so the movie clip plays in and then loops, but I want the movie clip to play out when a user clicks a different button that leads them to another frame and other content. But because they can click the buttons in any order they like I can't specify the play out to the buttons.
Can I make the current frame's movie clip play its "play out" part when I switch frames?
View 2 Replies
Similar Posts:
Jan 27, 2010
I have a series of buttons that when clicked go to certain frames which all display different content. I have a unique movie clip on each one of these frames that has an initial play in, followed by a looping animation (the character walks in, then loops waving or something of that nature), I would like the movie clip to have a play out animation (character walks off) when the user leaves that frame so that when they go to the next frame the new movie clip can play in (new character walks on screen). [code]...
View 0 Replies
Nov 21, 2007
I have my flash on multiple scenes, and would like to play an animation when clicking on the navigation button before switching to a different scene.
I'm halfway to accomplishing this.
Here is what i used
Code:
_root.gotoAndPlay("changepage1");
_root.onEnterFrame=function(){
if(this._currentframe=="changepage2"){
[Code]....
The above code is on a blank keyframe. Changepage1 is the start of the animation and Changepage2 is the end of the animation.
Upon clicking the navigation button it plays the above scenes.
However it doesn't change scenes to scene "Home2".
View 1 Replies
Nov 2, 2010
I would like play head of a movie clip to return to a certain frame of that clip so a MC inside it would loop. I now have: stop(); as the action.
View 2 Replies
Mar 26, 2004
i have a movie clip with a dynamic text field being animated...i have a text file with this in it
&textline1=time
&textline2=place
&textline3=year
&textline4=month
now how do i make the movie clip to first go from frame 1 to 10( last frame in teh movieclip) with the text time and then when the movie clip starts again it should say place and so on and so forth.. depending on how many textline variables i define in the text file?
View 5 Replies
Nov 20, 2009
I am using Flash CS4 and i have made some short movie clips. I want one of them to play on frame 24 once and then the next on frame 48 ect. How would i do this?
View 3 Replies
Aug 23, 2005
Lets say I have a button. What I want it to do is to tell ANY movie clip that is on stage at the moment to play a certain frame.
View 10 Replies
Jul 12, 2003
How do you translate the english (below) into actionscript?If the the movie clip with the instance name "hello" is currently at a frame greater than 2 (considering the frames inside "hello," not the main timeline), then goto and play its frame 76.
View 1 Replies
May 23, 2010
I am designing a tween mask mosaic animation with 1 picture on frame 1. My customers now ask me to add a 2nd mask animation with a second picture.
I used a button to go to frame 2 and play the movie clip. He doesn't a want a button.
play the movie clip on frame 1. Once the movie is over goto frame 2 and play the movie clip.
View 2 Replies
Nov 12, 2010
Enter frame play movie clip. I am trying to use this code]...
View 1 Replies
Feb 14, 2012
how to play movie clip and go to specific frame? this is sampel of playing MOVIE CLIP ONLY
"_root.gotoAndPlay("MainMenu")"
but how can i play frame number 40 in that movie clip.
View 9 Replies
Apr 29, 2009
So what time trying to do is play a specific frame in the movieclip based on the time of day:
PHP Code:
onClipEvent (enterFrame) {
var myDate = new Date();
var hour = myDate.getHours();
[code]....
but when I change to "gotoandPlay" the movieclip just loads from the beginning frame and seems like it doesnt check the time.
View 7 Replies
Apr 1, 2010
how to jump to a frame (gotoAndPlay) on the ROOT (or any frame anywhere) right after (EDIT) a VIDEO CLIP is done playing.
View 1 Replies
Apr 13, 2006
How I can make a button goto and play a frame of a movie clip. Basically the first frame is blank and when the button is clicked the movie clip will go to frame 2 and play. I'm also going to have some other buttons make it go to other frames.
View 2 Replies
Jan 15, 2011
On Scene1 I'm trying to add some script that will continuosly recognize what the x axis value is and if it is greater than 600 it is supposed to play frame 1 of the movie, and if it is less than 600 than it is supposed to play frame 10. The code I'm using seems to work, but only at the initial startup of the movie. How do I modify this code to have it continually updating the shoot movie based on where the mouse is at on the movie?
[Code]....
View 1 Replies
May 18, 2005
What is the actionscript if i want to go to a frame in a movie clip from another movieclip? And also for future reference, how do you go to a frame from a movieclip/button to a frame in the main scene? Is it something to do with root?
View 5 Replies
Jun 27, 2007
The movie clip is called "theScene" and I have it created on Frame 60 of a movie clip when a button triggers the playhead to jump and stop at Frame 60. However, upon leaving that frame, it will not disappear, so I want to unload it upon leaving that frame.I put in the following code across all frames of the movie clip in its own layer:
Code:
if (this._currentframe !=60)
{
[code]....
View 3 Replies
May 19, 2009
I wanted to make a preloader do something else besides just fill a bar. I wanted to make a movie clip play during loading, but I also wanted it to play and finish in time with the loading. For instance, if I created a movie clip of a boat slowly filling with water, and it was the preloader, my movie would load as the boat filled and when the boat was full the movie would be ready. The water fills as fast as the movie loads.
View 6 Replies
Dec 23, 2009
I have a very simple fla i built, all i need is the hover "over" stage to play this tween. On the keyframe I made it a symbol, movie clip. In there all the tweens are set exactly. It seems if you wanted motion on a stage,you would just put that clip on the over stage. I uploaded the fla file: [URL]
View 6 Replies
Nov 21, 2010
I simply have a rectangle vector image of a landscape and I want it to zoom in when I play it...and I guess stop at a certain point. Not a clicking function or roll over, just when I start up my swf file or go to that specific scene I want it start zooming (gradually, not fast either)
View 6 Replies
Nov 23, 2009
is there anyway to have a button play frames 5-10 on a movie clip inside the current frame, as well as skipping to...lets say...frame 10 of the scene?
i want to create a site where buttons go to different pages, but those pages have animations in and out.so if someone is in one page, and clicks a button to go to another, that page plays the "out" animation while the other page plays the "in" animation.
View 1 Replies
Jul 5, 2009
I am trying to make a grid with different frame for each movie clip
function dup() {
var maxNum = 7;
var Col = 4;
[code].....
View 7 Replies
Dec 5, 2005
i need to make a certain movie clip play when i press a button.
View 4 Replies
May 14, 2003
How do you make a movie clip play at a random time? And keep on playing at random times until the flash movie is over.
View 1 Replies
Dec 10, 2009
Flash CS4/Actionscript 3 I am trying to create a section for a site where mousing over a button will play a certain frame of a movie clip, which is sitting next to the button. Mousing over different buttons will play (and stop) different frames in the movie clip.
View 1 Replies
Feb 21, 2010
I was wondering how to make a movie clip got to a frame, but the game not goto that frame? For example, make an egg goto a frame, and move to a random spot, but the player wouldn't goto that screeen.
View 1 Replies
Jul 7, 2010
I have tried using gotoAndStop(nextFrame) and gotoAndStop(currentFrame+1) in my code and neither of those work right. How would I get it to work the way I want it to?
View 1 Replies
Feb 20, 2010
I have a listener which traces the Y value of mouse:
stage.addEventListener(MouseEvent.MOUSE_MOVE,f);
function f(e:MouseEvent){
trace(e.localY);
}
I need to make a movie clip play when the localY value is less than .25 of stageY, or even less than 150 would work.
View 7 Replies
Aug 8, 2003
what im trying to do here is have a button's (named btn) over and out states make a movie clip play forward or reverse. and my fla is named MCC. im fairly new so the more detailed explaination of the code the better. this is my code so far in the MC
[Code]....
View 3 Replies
May 26, 2009
I have a movie clip on a scene with a button inside. How can I make this button to go to play frames on the scene but not inside the movie clip in AS3.0?
View 7 Replies