ActionScript 2.0 :: Jumping To Next Frame After Video Is Complete?

Jul 7, 2010

I have a video (that im calling from my harddrive) that i would love to play once through,then jump onto the next frame (where theres another video that continues from the end of the first). Why can i not use the following code to jump?

on(complete){
gotoAndStop(5);
}

View 1 Replies


Similar Posts:


Frame Jumping - Click On Button 1 > Plays Frames 10 - 15 > Goes To Frame 20?

Oct 11, 2010

I have 5 different buttons for the navigation on my flash website.The first page is on frame one.When you click on any of the 5 buttons I want it to play frames 10 - 15 before moving to which ever frame the button 1-5 corresponds to. So:

Click on button 1 > plays frames 10 - 15 > Goes to frame 20
Click on button 2 > plays frames 10 - 15 > Goes to frame 30
Click on button 3 > plays frames 10 - 15 > Goes to frame 40 etc

How do I make this work?

View 3 Replies

IDE :: Jumping To A Frame Using XML

May 10, 2009

I'm adapting this iTunes coverflow style gallery for my own purpose [URL] Basically, the locations of the artwork and the URLs for when you click on a picture are stored in an XML file. Is it possible to adapt the AS or XML so that instead of opening a URL, clicking on a cover jumps to a particular frame on the timeline? Basically what I want to do is have the first and last items acting as previous and next buttons to go to a different frame on the timeline. I guess what i need to do is get the actionscript to do whatever is within and replacing that with the action I want it to perform?

View 2 Replies

ActionScript 1/2 :: Jumping From One Frame To Another?

May 4, 2010

I have a piece of code in AS3 but it doesn't work with AS2:
 
stop();
function login(event:MouseEvent):void
{
this.gotoAndPlay("first_page");

[Code]....
 
But I still have a problem. I have stops in each key frame but when I play the movie it shows directly the first_page section skipping all other frames before it.

View 4 Replies

Professional :: Tween Before Jumping To Frame?

Jun 25, 2011

I am wanting to fade out of a frame and then fade into another, and the way i was thinking of doing this was to code a tween to alpha 0 and then use the code:
 
home_btn.addEventListener(MouseEvent.CLICK, startMovieHome);
function startMovieHome(e:MouseEvent):void
{

[Code]....
 
I dont know how to ask it to tween and then go to the label "home" once the tween is complete..

View 1 Replies

ActionScript 3.0 :: Jumping To Frame And Line?

Jul 5, 2011

ok so i know you can use gotoAndPlay to jump to a different frame but how do you jump to a curtain line of code in that frame

View 7 Replies

ActionScript 3.0 :: Frame Jumping On MOUSE_OVER?

Nov 11, 2011

What I created was just a test but I can't seem to get it working. What I did was create a very small rectangle at frame 1. Created a tween and then at frame 100 made it a very large rectangle.

Then in my code I wanted the user to MOUSE_OVER something and the rectangle to ease to the length it was at frame 30. However I keep getting this error message:

ArgumentError: Error #2109: Frame label frame 30 not found in scene Scene 1.
at flash.display::MovieClip/gotoAndStop()
at Untitled_fla::MainTimeline/test()

Here is my code:

[CODE]
stop();
circle_mc.addEventListener(MouseEvent.MOUSE_OVER, test, false, 0, true);
circle_mc.addEventListener(MouseEvent.MOUSE_OUT, test2, false, 0, true);

[Code].....

View 5 Replies

ActionScript 2.0 :: CS3 Jumping To Frame Based On The Value In A Text Box?

Feb 23, 2011

I have a maths-based movie on which a number of points are allocated depending on the answers given to a series of multiple choice questions.

At the end of it, a person will score somewhere between 1 and 10 points depending on the answers they gave.

I have got to the stage where the system keeps track of the cumulative score, and at the conclusion, I have a text field on stage, which has an instance name of "results". When the person enters the frame, the results field displays the total number of points scored.

That is ok, but what I actually would like to happen is that the movie jumps to a different frame based on that figure, so that if they score 2, it would take them to the frame labelled "two" and if they score 9, it takes them to frame "nine"

Is there a way of effectively saying:

On frame enter
if results.text = 1 go to "one";
if results.text = 2 go to "two"
etc etc

I'm guessing that I need to use the:

_root.onEnterFrame = function(){
};

how to describe the bit in the middle...?

View 4 Replies

ActionScript 1/2 :: Pausing The Movieclip And Jumping To Frame 2 On The Timeline?

Mar 24, 2011

I tried to get this right but it just won't work for me. It's probably something very simple. I have a video in a movieclip on my timeline. On the first frame, I have the stop(); command. I want to be able to hit the SPACEBAR: which results in pausing the movieclip and jumping to frame 2 on the timeline.

View 8 Replies

ActionScript 3.0 :: External SWF - Jumping To Frame Of Main Timeline

Aug 10, 2011

I have an external swf (is is an intro, nade in aftereffects)..and it loads in the main timeline of the site with a preloader. Everything is ok, but, when the intro in done plating. It stops and I want do see de site. I mean from the last frame of the external swf, I want to jump to the second frame of the main timeline.

Here is the script:
stop();
var req:URLRequest = new URLRequest("intro.swf");
var loader:Loader = new Loader();
function fileLoaded(event:Event):void{
addChild(loader);
[Code] .....

View 2 Replies

ActionScript 2.0 :: Jumping To A Frame *inside* A Loading Swiff?

Feb 1, 2008

I have this code on the home page of a site:

_root.createEmptyMovieClip("loadExternalSwiffs_mc" , 2);
loadExternalSwiffs_mc._x = 0;
loadExternalSwiffs_mc._y = 103;
_root.loadExternalSwiffs_mc.loadMovie("introSplash Page.swf")

The "introSplashPage.swf" it loads initially has buttons on it that swap in one or another swiff in its place, for instance, "mediaPage. swf"

This works OK, but in the case of "mediaPage.swf" I'd prefer that the button take the viewer directly to a labeled frame *inside* the swiff. I can't figure out how to do that.

Online, I saw tantalizing code that used...

on (press) to get to the new swiff and then...

on(release){
_level2.gotoAndStop(10);
}

to get to a specific, numbered frame. But I couldn't get it to work, either going to my my frame number or, when modified, to my label.

View 2 Replies

ActionScript 2.0 :: Pausing The Movieclip And Jumping To Frame 2 On The Timeline?

Mar 24, 2011

I tried to get this right but it just won't work for me. It's probably something very simple. I have a video in a movieclip on my timeline. On the first frame, I have the stop(); command. I want to be able to hit the SPACEBAR: which results in pausing the movieclip and jumping to frame 2 on the timeline.

View 4 Replies

ActionScript 1/2 :: Jumping From Main Timeline To A Specific Frame Of A MovieClip?

Apr 6, 2010

The situation is as follows:I'm using Action Script 2.0 --- I'm obligated to in the course I'm attending.I have a main timeline that has 3 frames. On the 2nd frame I have a movieclip named mc_nbr. On the 3rd frame I have a button "voltar" that when pressed I want it to "Go and Stop/Play" at frame 3 of the movieclip (that is embedded on frame 2 of the main timeline).

I used the folowing code for the button btn_voltar:
on (press)
{

[code]......

View 2 Replies

ActionScript 2.0 :: On(release): Displaying A Movieclip -> Waiting -> Jumping To Frame

Oct 8, 2011

DISCLAIMER I've just started to learn flash to fulfill a class assigment. This problem probably has a very easy answer, but I can't find it and now I'm getting close to my deadline.

PROLOGUE The title describes what actions I'm trying to put in a button. I'm making a quiz. Each keyframe has a pic and 4 buttons. The correct answer should show a green V onscreen; the wrong answer should show a red X. After one second, it jumps to a new question in a new keyframe. I've made the X and V as both 12-frame movieclips and 1-frame graphics on the library, but can't seem to make them show up correctly.

1st issue: showing the movie clip/graphic. The movieclip/graphic should appear in the center of the stage *after* you press the button. Currently, the clip is there from the start; can't find a way to make it start invisible, then visible when I click the button. 2nd issue: waiting 1 second before going to next frame.I've tried using setInterval, but failed. Maybe the best way is to use a command that waits for the movieclip to play before making the jump?

[Code]...

View 6 Replies

ActionScript 2.0 :: Hit The SPACEBAR: Which Results In Pausing The Movieclip And Jumping To Frame 2 On The Timeline

Mar 24, 2011

I have a video in a movieclip on my timeline. On the first frame, I have the stop(); command. I want to be able to hit the SPACEBAR: which results in pausing the movieclip and jumping to frame 2 on the timeline.

View 1 Replies

ActionScript 3.0 :: Create A Holder And Use AddChild To Play Them Instead Of Jumping To The Frame Labels?

Feb 3, 2009

I'm basically creating a huge slideshow presentation for a live show. I decided to put everything into 1 huge fla/swf so that it is more manageable in the future.With AS3, I have made it so that when the user presses the right arrow key, it will seek out the requested frame label and play the next slide.This works well.However,some of the frames need to be played again in later slides.So I would prefer to reuse those frames again, instead of copying and pasting them 10 times.When I do that though,I have no way of switching to the next slide, as I've already set the nextframetoplay variable in my class.

Does anyone have a better way of doing this? Should I perhaps create the screens and just create a holder and use addChild to play them instead of jumping to the frame labels?

View 10 Replies

ActionScript 3.0 :: FLVPlayback.complete - Play The Video Files With The Playback Component In Each Of The Frames Where The Video Was

Apr 26, 2010

I am wanting to play a number of movie clips and flash produced video clips. On the main timeline I have a frame for each clip I want to play. In that frame is a flash movie that contains the video that I have embedded onto the timeline for the movie. The filesize for this project is massive and I am struggling to work on the file. I want to be able to play the video files with the playback component in each of the frames where the video was.

[Code]...

View 5 Replies

ActionScript 3.0 :: Tweens - Get The Previous Image / Piece Of Work To Fade Out Before Jumping To The Selected Key Frame

Oct 19, 2009

I curenttly making a simple online portfolio using flash (as3). Each piece of work i'm displaying resides within a mc on the main time line, and within that each piece of my work lives in its own keyframe, so the site has a basic 'mc.gotoandstop("label")' navigation. I can get my images to fade in using a AS tween, but I want to get the previous image/piece of work to fade out before jumping to the selected key frame and fading in the selected work. Currently, the innards of my button function reads something like:

tween (fadeout)
gotoandstop
tween (fade in)

but this clearly not the right way to go about it? Is there a way of putting slight delay after the fade out tween in the function? To let it fully fade out before fading in the new work?

View 3 Replies

ActionScript 2.0 :: Go To A Frame When A Sound Is Complete

Sep 9, 2010

I need a simple frame script that will track when a specific audio file is finsihed playing followed by a "go to" command that targets a marker or frame number after the sound is done.

View 7 Replies

ActionScript 2.0 :: Flv On Complete Goto Frame 2

Jan 2, 2009

So I have a custom flv player addapted from lee brimelows video basic tutesI want it to goto and stop on frame 2 in the main timeline when the flv has completed.Not got it cracked, so here is my code so far and the fla is attached.[code]

View 3 Replies

ActionScript 2.0 :: Going To Next Frame After A Movie Clip Is Complete

Dec 1, 2009

I'm currently stuck in my flash animation.I'm currently on frame 101, there is only a black background and a movieclip with looping sound and dynamic text fading in and out again.My problem is that I don't know how to make the flash advance to frame 102 after the movieclip has completed once. I have done it before with a sound with the onSoundComplete command, but there doesn't seem to be a onMovieClipComplete command. My question is general is: How do I make my flash proceed to the next frame after the movieclip is done?

View 1 Replies

ActionScript 3.0 :: How To Trigger Event On Video Complete

Sep 1, 2008

I am trying to build my first AS 3.0 project using examples from O'relliy. I have loaded an FLV using the NetStream class. I added an Event Listener find out when the video has finished playing, probably not the right method. After the video finishes, I'd like to load a static image and a replay button. What should I use to trigger these things to load? What should I use to load them?

View 1 Replies

ActionScript 2.0 :: Video Lags After Buffer Is Complete?

Jul 2, 2009

I'm using NetStream to show my videos, everything works fine except the annoying lagging that I get after the video has buffered. The video simply skips/ jumps to the point that it had buffered to, stops and waits again for the same amount of it to buffer then plays normally.Me changing the seconds that it takes to buffer doesn't effect it. The action script is as follows:

stop();
ns.play("blank");//stops video playing in the background
var nc:NetConnection = new NetConnection();

[code]........

View 0 Replies

ActionScript 3.0 :: Finding Way To Determin When Video Is Complete?

Jun 5, 2009

video starts playing when project loadsButton ONE  pauses the video and places a smaller video over the first video. When this second video completes I would like it to be removed and the first video resumed. As it's currently written I have to use button Two to accomplish this task  I me ho to determin when video is complete then I won't need to use button Two.here's my code:

import fl.controls.ComboBox;import fl.video.*;import flash.filters.*;
var connection:NetConnection = new NetConnection();var connection1:NetConnection = new NetConnection();var stream:NetStream;var stream1:NetStream;var md_obj:Object = new

[code].....

View 8 Replies

ActionScript 3.0 :: Video Complete Event Not Working In External SWF

Jan 10, 2012

I have a video complete event that was working wonderfully, when it was part of my main SWF, but now I have pulled it out and have it as an external SWF and is being loaded into the main timeline. Now it does not work.

I now get this error on compiling:

Code:
Symbol 'reconnect_video', Layer 'Actions', Frame 141, Line 61119: Access of possibly undefined property COMPLETE through a reference with static type Class.
The code that is causing the error is as follows:

Code:
import fl.video.VideoEvent;
reconn.addEventListener(VideoEvent.COMPLETE, completeHandlerReconn);
function completeHandlerReconn(event:VideoEvent):void{

[Code].....

This is code is inside off a movieClip called "reconnect_video" which is nested inside of a movieClip called "journal_open". So the parent of this movieClip should still be the same. The "journal_open" movie clip is the one that was removed from the original SWF. (due to size) I am now loading "journal_open" externally, and since then this error has appeared.

Do I have to do something different since this is no longer the main SWF?

View 7 Replies

ActionScript 2.0 :: Conditional Statement - Once The Puzzle Is Complete You're Taken To A Specific Frame?

Jul 30, 2008

I'm currently working on a puzzle. The objective of the puzzle is to place the numbers in order from 1 - 10. Once the puzzle is complete you're taken to a specific frame.However, I want to be able to go to 1 of 2 frames depending on how long it takes to complete the puzzle.Each number has the following code:

on (press) {
startDrag(this, true);
}
on (release) {[code]....

View 2 Replies

ActionScript 3.0 :: URLLoader Fires Event.COMPLETE Although Not Complete

Jun 14, 2011

I made a test where I download a file using URLLoader - something like this:

[Code]....

in the middle of the downloading process I physically disconnect the internet connection. the download stalls - but after aproximately 30 seconds downloadSuccessful is invoked, although only half of the data was downloaded. how can I make sure that the data to be downloaded is complete and correct?

View 2 Replies

ActionScript 3.0 :: Complete Event Triggered But Loading Can't Complete

Feb 17, 2011

I am loading in binary files with the url class which can be quite large 10mb + and it works fine on my server but another server I am testing on it can sometimes not work. Sometimes it will not load the file and other times it will only load about 20% and it throw a complete event??? Then of course other times it works fine. This server is https maybe that has something to do this it?

View 0 Replies

ActionScript 3.0 :: Memory Leak Using Flash.media.video And Bitmap For Frame By Frame Function?

Oct 12, 2009

i have a pb of memory leak:i using flash.media.video to read video i have function to do frame by frame:FrameBuffer is an Array containing my video frame, lastimg is Bitmap object

[Code]...

View 1 Replies

Professional :: Playing An External Video File And Upon Video Being Played, Move Onto Next Frame?

Dec 16, 2011

I suppose the title says it all.  I can load an external video file (FLV) and I can have it play.  I also have the custom buttons made to control the clip.  The only thing I have left to do is to have the main timeline move onto frame 2 once the external video reaches its end.  I am using actionscript 3 and flash cs 5.5. 

View 7 Replies







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