ActionScript 2.0 :: Control First Frame When Loading A Movie?

Jan 14, 2009

I have to load a swf movie. I can't change this swf movie. But on this movie, there is no stop() on the first frame, and into this swf there is a sound that play once loaded. Besides, sometimes, the swf I've to load has a stop() at first frame. So I have to write something to stop whenever there is or not a stop() at 1st frame, so that I can decide when the sound starts by clicking on the play button.

So I wrote this bellow, that work but in case of a swf without stop() the play action play sound with a few delay. For example when I click on play() the song starts but it seems that sond has already started. I suppose it's an asynchronization problem.

Here is the code:

ActionScript Code:
stop();
mymusic = "5405985.swf";
var mySound:Sound = new Sound();

[Code].....

View 9 Replies


Similar Posts:


ActionScript 3.0 :: Make Two Buttons Which Will Control The Movie To Goto Next Frame And Previous Frame?

Oct 5, 2009

Just finally making the transition from AS2 to AS3.All i need to do at this point is make two buttons which will control the movie to goto next frame and previous frame. I have gotten how to make the buttons go to a specified frame number and also a button to go to a specified external url but no success in making a simple next/previous pair of buttons.

stop();
but1.addEventListener(
MouseEvent.MOUSE_UP,

[code]....

View 14 Replies

ActionScript 2.0 :: Looking For Total Frame Control On A Movie Clip?

Nov 25, 2006

I am looking for a total frame control on a movie clip.

for ex: if my mouth rollover my clip, my clip play frames 10 to 18 in loop. (i dont know how to loop)

and on rollout play frames 1 to 9 in loop.

View 1 Replies

ActionScript 2.0 :: Control What Frame The Scene Is On From The Movie Clip?

Sep 8, 2009

I have a movie clip that plays within my scene.I have only 1 scene which has 2 frames.How do I control what frame the scene is on from the movie clip? is it:

Scene1 on (release) {
gotoAndStop(2);
}

View 2 Replies

ActionScript 2.0 :: How To Control Frame Rate Of Flash Movie

May 7, 2011

I want to know that how can I control frame rate of my flash movie from xml file or from AS2 code.

View 2 Replies

ActionScript 2.0 :: Change Control Movie Clip 's Frame Rate

Feb 12, 2009

I was wondering if it is possible to change the frame rate per seceond (fps) of a movie clip while the movie is playing.

View 2 Replies

ActionScript 2.0 :: Function For _root - Control A Movie Clips Current Frame By Another Movie Clips?

Sep 13, 2009

I'd like to control a movie clips current frame by another movie clips action script.I realise the following controls the outside (root) frame time line:

on(release){
_root.gotoAndStop(1);
}

but I'm not sure how to apply that to my other movie clip. I'm guessing it would be something like this:

on(release){
_*movie_clip_name*.gotoAndStop(1);
}

View 1 Replies

ActionScript 2.0 :: Timeline Control - Navigate Through A Movie Clip And Stop At Frame Labels Using Individual Buttons?

Sep 8, 2010

im trying to navigate through a movie clip and stop at frame labels using individual buttons to call to individual labels while being able to see the on the way to the frame(for a blurred effect).my goal is to jump from point A to point F to point Z and see all the frames in between and visa versa.

View 1 Replies

ActionScript 2.0 :: Loading A Movie On FRAME 1?

Apr 4, 2006

I used a Tutorial from Senocular to preload my movies internaly. My problem is simple: The tutorial works only with onPress:

[Code]...

What I would like to do is to make a first movieclip load in the beginning without having to click any button or do anything. How can I starPreload automaticaly ? Here is the code on frame one:

[Code]...

View 4 Replies

ActionScript 2.0 :: Loading Entire Movie From Frame 2?

Jan 18, 2012

so i've been working on a flash game for a few years now and i remember seeing a setting on a tutorial a while back where you can control how much a movie loads on each frame instance. For example the first frame of my game (loader) first shows up on 12%. I want the first frame to load on 1% and then preform the rest of the loading sequence with the first frame still visible. At the moment it isn't too bad, but once my swf file exceeds a few MB then this will cause me some issues.

View 4 Replies

ActionScript 2.0 :: Choosing Frame For Loading Movie

Oct 7, 2004

I am importing a movie with
Code:
loadMovie("test.swf","content")
were content is a little pink box with instance name content. Now my question is , how do I choose which frame the imported movie is on. I want to be able to go to a certain frame in it and stop preferably with no code in the imported movie if its possible.

View 4 Replies

ActionScript 2.0 :: Loading SWF Movie And Playing On Specific Frame

Jun 18, 2011

I am doing a presentation in flash in movie languages I have 7 buttons when some body click button 1 it should go to a new movie called animate frame number 2 when some body click button 2 in movie language it should go to movie animate frame 6 if people click button 3 in language movie it should play movie animate frame 11 like that for all 7 buttons I have used the following code but its always going and stopping at frame number 1 in animate movie

Here is the code:
button 2
on (release) {
unloadMovie
loadMovieNum ("animate.swf", 6);
}
button 3
on (release) {
unloadMovie
loadMovieNum ("animate.swf", 11);
}

View 2 Replies

ActionScript 2.0 :: (MX) Loading Specific Frame Into A Main Movie?

May 3, 2003

I have a main movie that loads about 30 external swf's, so i have a button which after its pressed it loads an external swf and a specific frame,

i.e

there is a main movie called main.swf and there is an external movie that has about 15 frames and its called movie.swf I added a button to a main.swf so when its pressed it loads that external movie.swf so my question is: how do i load a specifc frame of that movie.swf

View 1 Replies

ActionScript 2.0 :: Loading Map At 50 Percent Scale On First Frame Of Movie

Jun 30, 2010

On loading the first frame of the movie I am trying to load a map at 50% scale. I tried loading into the frame where the map is located...
Code:
map_mc._xscale=50
map_mc._yscale=50
That did not work.
I will be inserting hotspots which will bring it to 100%scale.

View 7 Replies

ActionScript 2.0 :: Loading Specific Frame Of External .swf Into Main Movie?

Aug 3, 2003

how to load frame label "one" of external.swf into main movie.

buton.onPress = function () { loadMovie("external.swf.......??

View 12 Replies

ActionScript 2.0 :: Loading Frame 1 Of Root Timeline From End Of Nested Movie Clip

Jun 25, 2009

I am building a small banner, which ideally will have a random string of text fade in (long enough to be read), then fade out...to play another random text.

Each of my texts have been built as movie clips... they fade in, stay up long enough to be read, then fade out. At the end of this, I need the movie to go back to frame 1 of the main timeline, as I am using the following script:

Code:
_root.onLoad = function() {
//generate a random number from 1 to 11
var nRandom = 1+Math.floor(Math.random()*12);
//tell timeline to goto and play the random number 'nRandom'
gotoAndPlay(nRandom);
};

Each of my text movie clips are on a different frame, so I need to call a new random _root frame to play from within the movie clips. So far, all that is happening is whichever movie is chosen to play, goes in a loop.

View 5 Replies

ActionScript 3.0 :: Seek Frame-by-frame The MovieClip Timeline And Use The CurrentFrame To Control All Motion Child?

Jul 16, 2010

i'd like to control MovieClip timeline witch contain several DisplayObject (like Sprite, Button, ...) these DisplayObject have Motion (AnimatorFactory). How can i do seek frame-by-frame the MovieClip Timeline and use the currentFrame to control all Motion child.

[Code]....

View 18 Replies

Flash :: Control Movie From JavaScript When Have No Control Over The Source?

Nov 4, 2009

Is it possible to control a Flash movie from JS when you have no control over the source? I have decompiled the movie to see its inner workings, but I know nothing about Flash, so I'm mostly in the dark. I found this resource, Interaction with JavaScript, but it's not working for me (probably because I don't know what message to send to the movie).

View 1 Replies

ActionScript 2.0 :: Make Movie Play Frame X To Frame Y Then Switch To Frame Z?

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

ActionScript 3.0 :: Target Path - Control A Movie Clip Called "nosotrosmc" With A Frame Label Inside Called "historia"?

Oct 5, 2009

i'm trying to control a movie clip called "nosotrosmc" with a frame label inside called "historia" but does not work this is the code:

[Code]...

View 2 Replies

ActionScript 2.0 :: Loading Levels - Nieuws.swf Has A Stop On Frame 1 And On Frame 2

May 16, 2005

why my "nieuws.swf' is not going to frame 2 or not showing at all when i press the button with the second piece of code on it? The nieuws.swf has a stop on frame 1 and on frame 2. I can see it right away when i take away the first stop. I use the function playNieuws, to make it all happen.

[Code]....

View 1 Replies

ActionScript 3.0 :: Partially Loading An External SWF (frame By Frame)?

Dec 2, 2009

I have an application swf that loads a big external swf with all GUI components/assets (skin) in it.I want to display a progress bar during loading of the external asset swf file but the images for the progress bar are also included in the external swf file.Is it possible to load only a portion of the external swf before loading the rest. The idea is to load the progress bar images from the external swf, then construct the progress bar and than load the rest of the swf. I was thinking to put it on different frames. Frame 1 containing the progress bar graphics and frame 2 the rest of the assets.

View 3 Replies

ActionScript 2.0 :: Control SWF From One Frame To The Other?

Jan 29, 2003

how can i controll one SWF wich is in one frame from the other SWF wich is in other frame? for example: I have two frames ( topframe and bottomframe ), in the top frame i have navigation and in the bottomframe must be content, so how can i create some button in navigation wich is gonna to controll the content in the bottomframe ( for example PLAY or GOTO )?

View 8 Replies

Actionscript 2 :: Add Control Feature To A Flash Movie Built Of Compiled Movie Clips?

Oct 15, 2010

The movie was designed in several flash files, each has been combined into a single movie clip and then all the movie clips have been moved into the master document.

Each movie clip is on a single slide.

They play through and when a clip reached the end I have used the actionscript root.gotoAndPlay(x) where x is the slide number of the next clip in the sequence as such my timeline looks like this[code]...

View 1 Replies

ActionScript 2.0 :: Searched Forums - Progress Bar - Dynamically Loads The Movie.swf's Into Itself And Will Control The Movie

Apr 10, 2003

I modified the loadBar from one of the popular preload scripts out there. What I am making is a progressbar, sorta like the ones you see in movie previews. But it doesn't seem to o work quite right. Here's what I have: interface.swf - dynamically loads the movie.swf's into itself and will control the movie (when I get around to it). it has the loadBar object

[Code]....

View 6 Replies

ActionScript 2.0 :: Make A Flash Movie That Would Allow The User To Control The Framerate Of The Movie?

Apr 11, 2006

I have to make a flash movie that would allow the user to control the framerate of the movie. Unfortunately I'm not that good with flash and I don't know how that could be done ..I thought about something like

"on(press){
movieclip.increaseframerate(*2);
}"

View 3 Replies

ActionScript 2.0 :: Set The Frame Rate Of An Externally Loaded Movie To A Different Frame Rate Than The Movie It Is Embedded Within?

Sep 21, 2004

it possible to set the frame rate of an externally loaded movie to a different frame rate than the movie it is embedded within. I basically have a flash site that loads flash movies using loadMovie command, however, the frame is lost within these movies and simply adopts the main site frame rate.

View 2 Replies

ActionScript 3.0 :: Control A FLV Object From Another Frame/mc?

Jan 30, 2009

here what i have:- On stage, a clip (video_mc) that has 2 frames- frame one is a jpg preview of the FLV with a playBtn- playBtn leads to frame 2 where FLV Component (videoPlayer)plays a video (using FLV, not netStream)What i want to do:- I want to stop and rewind the FLV Component (videoPlayer)lying at frame 2 of video_mc from a button (retour_btn) thats onthe stage.Ive tryied this code to target the FLV to not avail:video_mc(currentFrame = 2).videoPlayer.stop();I assume im not that far, but cant figure it out.

View 1 Replies

Timeline Control In AS3 On Frame Load?

Sep 10, 2009

What was simple is now documented by 15 pages of chicken scratchesI have searched through the docs and am just lostWhat I want to do was simple enough in AS2: onClipEvent (EnterFrame)_root.gotoAndPlay("2");But can't be done now. It doesn't work as a frame action either without the onClipEvent. All I want to do is go from the last frame of the timeline to frame 2 and skip the preloader. How the heck do I do that in AS3? I've searched online and cannot find the method, and perhaps search terms don't work. Anything I can find applies to AS2.

View 12 Replies

ActionScript 2.0 :: Control Scene And Frame?

Aug 13, 2006

I have some scenes, and from the main scene, it can go to any other scene based on user click. but when it goes to other scene, how can i know wht is the current frame number and scene that i am going from? [code]...

View 3 Replies







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