ActionScript 2.0 :: Get A Loop To Play The First Frame?
Jun 4, 2008
so im trying to get a loop to play the first frame until i is greater than 2.
so on the first frame Im increasing the value by 1
i++;
then on the last frame Im putting a if then statement that if i is less than 2 replay, else goto and stop at the next frame
var i = 1
if (i < 2 ){
gotoAndPlay(1);
}else{
gotoAndStop(361);
}
now I kinda know whats happening when the second code excecutes its resetting
var to 1, so my question is, how do I say once this movie has played once, stop the second time?
View 1 Replies
Similar Posts:
Feb 5, 2009
Using MX 2004. I would like to play the entire movie twice, then start playing a third time until frame 30 and stop.
View 1 Replies
Mar 6, 2009
I made a 2 frame flash. The first frame has a container that holds the movie clip, masks, audio & transitions for the intro. This frame I only want to play once. Then I want it to advance to frame 2 upon completion. Frame two is a leader/score board that will hold score tallies (it is linked to a TXT file that is linked to an ASP, which has not been completed yet), and therefore, it needs to loop into infinity. When I have the FLA open and I press CTL + Enter the intro plays then automatically advanced to the 2nd frame which loops to infinity.
(This is perfect -- this is how I want it to perform). When I go to the folder where the SWF and EXE are published, and I double clidk to open either one of them up, the intro keeps looping and never advances to the 2nd frame. I have to manually press next frame on the pull down menu -- and that is not feasible since this leaderboard will inevitably end up on a big monitor with an audience. Here is the link to the file: [URL].
View 3 Replies
Apr 22, 2009
I am working is CS3 and am experiencing problems changing the first frame on a graphic symbol. When I type in a new number it jumps back to the old one. When I try to change play once/loop/single frame setting it jumps back to the previous setting. I am trying to simply modify this on a keyframe in the symbol's layer on the main stage. I've experienced this on multiple occasions, but can't get the workaround this time. I know I can do what I am attempting. In fact, I do it at a couple of spots earlier in this symbol's instance without problems.
View 4 Replies
Apr 10, 2010
I've got an intro for a movie,and a single button appears around frame 58,and I've tried giving it a function so it will skip to fram 478 and play the whole movie from there on:
PlayCompl_btn.onRelease = function() {
gotoAndPlay(478);
}
but it keeps saying "statement must appear within handler" and I've got the same problem when the movie reaches frame 477 I want it to go back to frame 58 and play from there so it would loop all until the button is clicked:
PlayCompl_btn.onEnterFrame = function() {
gotoAndPlay(58);
};
View 9 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
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 25, 2011
This is an if stament on a frame on the root. I want to loop Carrera(a lenghthy movieclip) from frame 2 back to frame 1. (For testing purposes) This is the code:
[Code]...
View 3 Replies
Jul 6, 2003
I'm trying to write an if then statement that will loop back to frame 1 once the next frame it hits is higher than 5. For some reason it doesn't work and I could easily go to frame six and add a go to and play but, I'd like to learn what's wrong instead of doing it the easy way.
[Code]...
View 14 Replies
Nov 7, 2011
I'm having trouble with something that should be incredibly basic, yet i have no idea how to solve my problem.
[Code]...
it shows x as being 3 when you hit the button but it reverts back right away, so it looks like gotoAndPlay(2) is still playing frame
1. how do i stop it from reseting my variables?
View 1 Replies
Jul 13, 2006
i have a movieclip on stage. it has 3 frames but is stopped with "stop():" so it only shows the first frame on mousedown i want it to play frame 2 for a duration of 1 frame then frame 3.
View 3 Replies
Mar 13, 2011
I hope I can ask this correctly. I'll paraphrase.
press_mc.onRelease = function(){
mover2_mc.play()};
This is a snippet of some code I'm working on. Currently I have a mc that you press that plays another mc. That mc that reacts has 5 frames, each frame with stop(); on each frame. I do a normal play code because it lets me play through and cycle back to frame 1 after frame 5 (so if I click the mc it eventually cycles back to the first frame and starts the process over again). If I do a nextframe it stops at frame 5, so that's why I use play.
press_mc click on it and it tells mover2_mc to advance a frame and recycles back to frame one to redo the process.Can I tell press_mc to play and skip a frame or to have it play a list of frames that I tell? I can't do a _currentframe +2 because it'll halt at frame 5.
View 6 Replies
Jul 14, 2010
I'm not too acquainted with using loops. If you use a loop in one frame and then leave that frame, does the loop continue? This might be a strange question but I'm having some issues and I think they involve the use of a loop.
View 1 Replies
Jul 3, 2010
how to code this on a button
onrelease
gotoandplay(10); // i need delay here before activating the next code below//
gotoandplay(80);
the trick is.. i want the button to play frame 10 to 40 then after playing from frame 10-40 the movie stops and then play frame 80 to 100
View 4 Replies
Mar 8, 2005
I'd like my Flash site to be bi-lingual. What I have currently is a Flash movie with an empty Movie Clip which then allows users to go from movie to movie. The movies are all small movieClips that are loaded into the empty movieclip on demand. There is some video and text in each of the 30 movieClips.
Here is sample of code that i'm using to call up next MovieClip.
[Code]...
My solution for the bilingual version is to create a separate frame with the French version + video and then when user presses the French button they are directed to that frame. This way I could easily create the French text within the one movie. however i don't know the Actionscript code to call up a movieClip to play from frame 10, and not frame 1.
View 3 Replies
Jul 23, 2004
I am creating a site, and it has a animation that it has to play before loading the next section. What I cant figure out is what function I need to create so that when a user clicks on the vision button it will play the frame after stop(); which will close that section, then have it load the frame for the section that the person clicked on. The only way I can think of doing this is creating 3 different close animations for the three sections. But I figure there has to be a way to have it play the one close animation and then goto the frame which is the portfolio section or vision section (depending on the button clicked).
View 1 Replies
Jul 23, 2004
I am creating a site, and it has a animation that it has to play before loading the next section. What I cant figure out is what function I need to create so that when a user clicks on the vision button it will play the frame after stop(); which will close that section, then have it load the frame for the section that the person clicked on. The only way I can think of doing this is creating 3 different close animations for the three sections. But I figure there has to be a way to have it play the one close animation and then goto the frame which is the portfolio section or vision section (depending on the button clicked).
View 1 Replies
Sep 6, 2011
I built a button in one of the movie clips in my project,
when I release this button, it goes to the 41st frame of the main timeline and continue to play until the frame 70 which has got a stop; command. till here everything's just OK. But I want this button to do something more though I don't know whether it's possible or not.
I want this button to go and play the frame number 41 in the main timeline, and then after it stopped at the frame 70 , then jump to frame 73.
View 5 Replies
May 25, 2011
I have a small flash site made up of a number of pages all on the one timeline.
The query is this. When i release a button i want the timeline to roll on for x frames (fading components out) before going to the frame that button links to (The beginning of the new page).
I have no idea what AS to use for this.
No matter where in the timeline you are, the button should fade out that area and then skip to a new one.
View 2 Replies
May 7, 2006
When you click a button I want my flash to go to the frame label where the movie clip is located, and then play a certain frame of that movie clip.
View 5 Replies
Jul 17, 2002
I'm creating an effect in flash mx where lasers follow a guide path and reveal a word beneath. I was setting it up making it drop behind a square where the spark travelled and i used the setmask command to mask it, problem is, the setmask command only works with one instance at a time! Can i group multiple instances with actionscript? Or can i have it dump the squares on a mask layer with actionscript.I was also wondering if i could just make the script play on every frame without copying it to every frame? I tried the on enter frame deal but it didn't work.
View 3 Replies
Jun 5, 2009
Yesterday Kglad gave me the following :
nextTX.onRelease = function (){var nextFrameLabelNum:Number = (1+Math.round(thTX._currentframe/27))%10;
thTX.gotoAndPlay("next "+nextFrameLabelNum);
}[code].....
which works great IF I am moving one image at a time.What I have done now is tween 3 slides to move into a visible mask by pressing next, but when I press previous of course the above doesn't work.It just jumps to the previous three with no tween.I would like to maintain the tween but in reverse.I would like the previous just to undo, in reverse, what the next button just did with the tween?Is there anyway to make this happen with as 2.0?
View 1 Replies
Nov 29, 2009
In this bit of code is there anyway to adjust the gotoAndPlay Command to play from frame 114 to frame 200. Are there any commands that will do this. I want it to play from frame 114 to frame 200 when a button is pressed.
[Code]...
View 1 Replies
Dec 5, 2010
I'm building a flash application where the user can play multiple 30 sec .flv movies (one at a time) in slowmotion by pressing or holding down the left and right arrows keys.The user can hold/press "keypress right" to move to the next (key)frame and "keypress left" to move to the previous (key)frame in the .flv files.I have tested embeeding one .flv movie to the stage and it's working fine.But since I will be using many flv's I want to load the .flv's dynamiclly (on button clicks) using netstream or FLVPlayer. Would it be possible to step beetween keyframes in the same way if the .flv's are loaded dynamiclly? Or, must I embeed each .flv file into separate swf's and then dynamiclly load the swf's to my main stage?
View 1 Replies
Aug 1, 2011
I want my MovieClip to play from frame 5 to frame 30 and then stop. How can I do this?
View 5 Replies
Oct 18, 2010
What I'm trying to do is play 5 frames all attached with short audio wav files one right after another. I want to be able to press play for each frame.When I insert either of these codes:
Code:
play_btn.addEventListener(MouseEvent.CLICK, playSound);
}
function playSound(event:MouseEvent):void
[code]....
The video goes straight to playing the frame 1 wav sound file I have there, then when I press the button it rushes through the rest of the sound files in the rest of the frames and starts back at frame 1.Am I missing a code that I need to insert into the other frames, or am I using the wrong coding?
View 1 Replies
Aug 11, 2008
This may be a really simple question but I'm trying to go to a frame on the timeline which has a movieClip object in it and then goto a specific frame in that movieClip and I can't figure out how to code it. I thought something like:
gotoAndPlay("movieClipframe");
this.theMovieClip.gotoAndPlay("theFrame");
but I get a null reference error.Does anybody know what I'm doing wrong or if I'm?
View 6 Replies
Dec 4, 2010
I'm building a flash application where the user can play multiple 30 sec .flv movies (one at a time) in slowmotion by pressing or holding down the left and right arrows keys. The user can hold/press "keypress right" to move to the next frame and "keypress left" to move to the previous frame in the .flv files.
I have tested embeeding one .flv movie to the stage and it's working fine.
But since I will be using many flv's I want to load the .flv's dynamiclly (on button clicks) using netstream or FLVPlayer. Would it be possible to step beetween frames in the same way if the .flv's are loaded dynamiclly?
Or, must I embeed each .flv file into separate swf's and then dynamiclly load the swf's to my main stage?
View 1 Replies
Jun 15, 2009
I made three flash presentation for my company some time back in Flash 8, during an exhibition my company want all the three presentation to play in a loop so i opened the fla file of each presentation and inserted the following code in the last key frame of each presentation:
in careerfair.swf I inserted
fscommand("quit");
loadMovieNum("college.swf", 0);
[Code]....
I don't know, it is still not giving me the result, on double clicking on the presentation i just see one presentation that quits at the end and the new one doesn't start.
View 1 Replies
Dec 13, 2011
It worked awesome, but I only want it to play in a particular frame, which is the last frame. And I have a replay button, so when I clicked it, my first frame onwards will play the snow movie clip. How do I stop the movieclip from playing, when I only put the mc on the last frame?
View 2 Replies