ActionScript 1/2 :: Pause Movie After Loading, Then Play After Playing Another Clip
Oct 20, 2010
This is the set up so far. Loader1, is playing till home.swf is loaded. I am using the loadClip function for it. onLoadProgress plays the first bit of Loader1.
What I want to do is within onLoadInit() = function(_mc:MovieClip) {
root.ldr1.addEventListener("played", function() {_mc.gotoAndPlay(1);}); // add listener to Loader 1
_mc.stop();
[Code]....
The problem is that it is not playing the function. Also _mc.stop(); is not stopping the loaded file. It keeps playing, though _mc._alpha is working fine.
How can I make sure the event is being dispatched?? Home.swf ( the _mc being loaded), is within a separate movieclip, over the loader.
View 1 Replies
Similar Posts:
Mar 10, 2005
I've created some scrolling images and want to add a play and pause button to it. I want it playing when the site loads up but I can't get it to stop. I've used the stop(); AS but it won't work. I think it's because I haven't made it using tweening etc as the scrolling is purely AS based.
The FLA file is here could someone take a look please and tell me what AS I would need to add to my buttons so it will stop and play. I haven't created the buttons but I will have one for play and one for pause.
View 10 Replies
Mar 10, 2005
I've created some scrolling images and want to add a play and pause button to it. I want it playing when the site loads up but I can't get it to stop. I've used the stop(); AS but it won't work. I think it's because I haven't made it using tweening etc as the scrolling is purely AS based.The FLA file is here could someone take a look please and tell me what AS I would need to add to my buttons so it will stop and play. I haven't created the buttons but I will have one for play and one for pause.
View 10 Replies
Sep 19, 2011
Initially I want to control a movie clip (play, pause) using two buttons. I placed a movie clip(square) and two buttons (btnPlay, btnPause) on the stage.and created Engine.as assigned to stage.
/// Engine.as ///
package {
import flash.display.Stage;
import flash.display.MovieClip;[code]...
View 11 Replies
Mar 25, 2011
I am going to be working on a site that has various mechanical products for sale. The customer wants me to make a model and movie of each product to show how the product works. Here is an example product:
Flash Clip The problem I am having is, he wants the movie to only play when a user puts their mouse over the video. I attempted doing this with a mp4 file and it worked using jQuery, but only when in Chrome. Here is that link:
MP4 Clip I want these demos to be viewable by the largest possible audience, so I was trying to stay away from Flash (also because I don't know Flash very well if at all). Does anyone know of a way to get this video to work in other browsers like in the second example? If not, how can I achieve that same idea using Flash?
View 2 Replies
May 27, 2010
I am using CS3 with Actionscript 2.0I am trying to get a play / pause button to control a movie clip.I have placed the MC on one layer and the button on another layer.The button works great.All I need is the AS to control the timeline of the movie clip.
View 1 Replies
Apr 26, 2009
I'm trying to make a flash website that has clickable buttons that will play different movie clips. But I dont know how to make it to just play the movie clip with the button you click without playing all the movie clips on the main timeline.
View 1 Replies
Mar 30, 2005
I'm trying to load an external mp3 into my swf and then get my movie clip to play once the mp3 is fully loaded.This is the code I have in my first frame:
stop();
cyfan = new Sound(this);
cyfan.onLoad = function(true) {
if (true) {
[code]....
View 1 Replies
Mar 30, 2005
I'm trying to load an external mp3 into my swf and then get my movie clip to play once the mp3 is fully loaded.This is the code I have in my first frame:
stop();
cyfan = new Sound(this);
cyfan.onLoad = function(true) {[code]....
View 1 Replies
Jul 10, 2009
The movie clip is an actionscript movie which calls images from an external XML file and shows them as a slideshow. What i need to do is after the last image plays, stop the movie and move the main timeline to the next scene of the main movie. Everything logical in my brain is not working, and it may be that I have been staring at this project for too long but for the life of me i can't make this work.
View 11 Replies
Aug 2, 2003
I would like to have it so that when I click a button, it tells a movie clip to play and it just blinks loading. I want an external .swf to be loading while that movie clip is playing. When the external .swf loads, I want it to tell the mc to stop. How do I do all of this?
View 1 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
Oct 7, 2011
if i click 'Play' Button video playing normally, after i click 'Pause' button video pause, next i click 'Play' Button video playing from starting point. what is the problem
solution pls...... Code:
[Code]...
View 2 Replies
Jun 20, 2011
Can you pause a movie clip, let's say movie clip A, from inside a seperate movie clip, let's say movie clip B. B is not a parent of A.
Essentially, I have a background slideshow running that I want to stop when a menu item is clicked, and an external swf file is loaded. I attached a jpg which diagrams how the movie clips are organized within each other and what I want to pause from within which movie clip:
If this is not feasible, I'd love if anyone could reccomend a better way to structure the movieclips.
View 5 Replies
Feb 6, 2009
I've got a play/pause movie on my timeline to control an FLV via NetStream. The idea is to switch from a play symbol to a pause symbol, but it's not working.[code]Clicking on the clip will start and stop the flv just fine, but the symbol switch doesn't happen. When I take out the ns code, just to check and see if the switch will actually work, there's no problem.What am I doing wrong? How can I get my clip to change from a play to a pause symbol?
View 1 Replies
Jun 13, 2010
Demographics - Action Script 2.0; Flash CS2 I have 4 MC clips. Each one labeled MC_Ball_1, MC_Ball_2, MC_Ball_3, MC_Ball_4. I want to randomly pick one to play. Have it play in its entirety and then wait 60 seconds and randomly pick another one, have it play in its entirety, and then wait 60 seconds.....keep going in an endless pattern. I can write code in frame 1 of root to randomly generate 1, 2, 3, or 4. Code below.
[code]...
Problem is when it goes to play the clip, it keeps playing the clip. I put stop(); at the beginning of each code, but it only plays the random number first chosen continuously. Instead of stop(); what can I write so it plays in its entirety, then goes back to frame 1 and choses the next.
View 6 Replies
Aug 14, 2010
I am going out of my mind trying to get this to work. I can do it in AS2 without a hitch - but not AS3. I just need to load an external swf file into an empty movieclip. Then I have 2 buttons play and pause that need to be on the top layer of the new movie and they need to play and pause the loaded swf file. I have tried a number of things and nothing is working.
View 1 Replies
Apr 22, 2010
I have a question in Flash play/pause button. I have created a flash slideshow which was exceeding 16000 frames, so I've split the movie into two. I'm loading the second movie at the end of the main movie using loadMovieNum. I have placed the play/pause button in the main movie which works fine until the second movie loads. This used to work for me in the older version of Flash (flash 8).I'm using CS4 now.
View 3 Replies
Feb 14, 2009
i made a game with all the levels put into a movieclip named "game". Every level is put into a different frame and i want to make a pause and play button.I found this code but dont know how to use it:
on (release) {
for (var i in mc) {
typeof (mc[i]) == "movieclip" ? mc[i].stop() : trace("mm");
[code]....
View 3 Replies
Feb 3, 2005
I want to know if there is a command or actionscript that will allow you to pause the movie automatically for like 30 seconds and then continue the movie after 30 seconds have passed, instead of adding alot of frames for about that add up to 30 secs. Just like the goto and play command.
View 2 Replies
Jun 24, 2010
I am pretty new to ActionScript 3 and Flash. I don't want my movie clip to play unless the person's mouse curser is on the movie clip for more than a second. If the person just runs their curser over the movie clips really quickly, then it should do nothing. It must be more than a second. How do I code that?
[Code]...
View 17 Replies
Mar 9, 2009
I have created a flah player with no controls which loads an ecternal flash video. What the client wants is to be able to pause and play the movie by clicking on it. I have an FLVPlayback component with the name MyVideo. All the actionscript I have at the moment is the following
myVideo.contentPath = file;
myVideo.autoRewind = auto;
File is a variable passed by SWFObject, this is the filename of the external Flash Video. This is so they can use the player with an video. Auto is a parameter passed by SWFObject so they can set whether the movie auto rewinds or not.
View 1 Replies
Oct 26, 2011
I have created a flah player with no controls which loads an ecternal flash video.What the client wants is to be able to pause and play the movie by clicking on it.I have an FLVPlayback component with the name MyVideo All the actionscript I have at the moment is the following
myVideo.contentPath = file;
myVideo.autoRewind = auto;
file is a variable passed by SWFObject, this is the filename of the external Flash Video. This is so they can use the player with an video.auto is a parameter passed by SWFObject so they can set whether the movie auto rewinds or not.
View 1 Replies
Feb 11, 2010
I would like to create play/pause movie controls that for different flv files. I do not want to use skins but have the controls as part of the movie/video.
View 1 Replies
Feb 11, 2010
I would like to create play/pause movie controls that for different flv files.I do not want to use skins but have the controls as part of the movie/video.Can anyone point me to a tutorial source that will help me design these?
View 1 Replies
Mar 29, 2012
I have a slideshow done in Flash. I have a main movie that has a slide on each frame of the movie, with navigation buttons. On each frame, I have AS2 that loads a different SWF per frame. The AS I'm using is:
loadMovie("Data/2.swf", "container");
stop();
The number "2" goes up/down based on the slide. I want a hard-wired number versus the frame number because my client is deleting/adding slides and it's easier to keep track of it hard-wired.
Right now, each slide I'm loading has its own play/pause toggle button that is this AS2:
on(release){
play();
}
So what I'd like to do is put the play/pause toggle in the main SWF (and put a graphic footer under all the buttons). So how do I tell the play/pause buttons to play/pause the MC that is containing the slide SWFs?
View 1 Replies
Oct 7, 2009
I have created a main movie that includes 5 different movie scenes. Each scene is sequential in order 1-5 on the main timeline. I am trying to add two buttons, Pause and Play. I have added them to the main movie timeline but the have no effect on the 5 scenes.I moved the buttons into each scene and the buttons do work, however, it starts to play again if I wait long enough (seems like once the player reaches a new scene it starts the new scene).[code]
View 0 Replies
May 24, 2010
I'm trying to get a movie clip to automatically load up another external clip, after playing an embedded flv.
This is what I've tried so far:
var holdFrame = setInterval( holdFrame, 5000);
gotoAndPlay(
_root.mc_holder.loadMovie("swf/library.swf"));
clearInterval (holdFrame);
Although it throws no errors, the setInterval is ignored and it just loads direct into the next mc clip.
View 9 Replies
Jul 9, 2011
I'm trying to pause a movie using a stop action. I'm using a button to do this. This is in the actionscripting attached to the button.
on (press) {
stop();
}
The button is in the main movie so I don't get why it's not working. I'm also trying to add a button next to it that would play the movie, after pausing it.
View 5 Replies
Jul 18, 2011
I'm making a project, So I've got several questions..
-How do I make the Movie play or pause by the click of a keyboard or a mouse button?
-How do I Open another SWF within the SWF (loadMovieNum doesn't work anymore )
And last question is How do I move the "video app" I actionscript'd and make it larger . Here's the code I used to put the "video app".
Code:
var camera:Camera = Camera.getCamera();
camera.setMode(550,400,60,true);
// setMode(videoWidth, videoHeight, video fps, favor area)
// Now attach the webcam stream to a video object.
var video:Video = new Video();
video.attachCamera(camera);
addChild(video);
View 1 Replies