ActionScript 2.0 :: Specific FPS For A Loaded Movie?
Aug 11, 2002
Trying to get a script for a Specific fps for a loaded movie,i.e. My main movie is 60 fps and my loaded movie is 12 fps and when I play, the loaded movie plays in 60 fps........Is there a way to play the loaded movie in a specific speed (like 12fps rather than 60 fps)....
View 11 Replies
Similar Posts:
Mar 28, 2010
I am making a flipping page book in flash and have had to create sections in different movies because it kept crashing when i tried to have all the pages in the same movie. I have 3 movies 'page flip4', 'pageflip4-2', and 'page flip 4-3' . I have used the code below to go (flip bacwards) from 'page flip4-2' to the frame label ''backflip'' in 'page flip4'..This works fine
Code:
on (press) {
loadMovieNum("page flip4.swf", 1);
}
[Code].....
View 0 Replies
Jun 15, 2009
im making a sort of a game and depending on what u choose u may load 1 of 3 or 4 options of movies into a specific level for each option. Meaning: the different toy hands are allways loaded on level 3, no matter which u choose and so on. At the end i need to make a list of the choices the user did, so i need to know if "hands_blue.swf" is loaded in level 3, and if so then push."hand blue" into an array. Im trying this on the _root frame,but no matter what option i take, i allways get the same option:
Code:
list=new Array();
if (_level(3)==="hands_blue.swf") {
list.push("Selecci�n: hand blue");
[Code].....
View 11 Replies
Oct 28, 2009
I have a swf movie that loads to my main scene using a preload. I have a button found on the main scene. When that button is pressed I would like to use the GotoAndPlay command to play a specific frame in that movie. How do I do this. my swf is called inter_mc.swf. I created a function for the button but somehow Im thinking I need to designate the swf in the goto code. This isn't working but it is what I have so far.
[Code]...
View 2 Replies
Jun 17, 2009
basically i have a container which I am loading in swfs, when you click on a specific button I want the loaded swf to jump to a specific frame.
I am using actionscript 2 at the moment this is the code on my buttons...
on (release) {
container.loadMovie("lindy_black_swatch.swf");
}
View 1 Replies
Mar 31, 2006
i need to change the colour of a graphic in a specific movie in a specific frame. if i have a movie clip instance-named "sidetext" thats 15 frames long, and i want a graphic in the movie, called "letterp" to change to one of four colours that i want it to randomly at frame 10 and stay that colour uintil frame 15, how can i do this?
View 2 Replies
Mar 29, 2010
how I can loop a specific bit of my movie until a specific link is clicked?
View 5 Replies
Dec 3, 2009
I have been doing really well figuring everything out up until now.[code]How it stands, what is this link pointing to? Can I make it target a specific frame in a specific movie clip?And if someone would be so kind and explain what this is saying in 3rd grader terms.
View 3 Replies
May 16, 2005
I have a dropdown menu that I'm learning to use from a tutorial. It's just a little over my head and am wondering if someone could help me. Here's my situation:
1) The menu has the title, DESTINATIONS. Submenu dropdown are a list of CONTINENTS. Rolling over CONTINENTS show COUNTRIES. This works.
2) Clicking on a Country should:
A) load an external swf into an empty movie clip :: Works!
B) go to the COUNTRY specific frame within that loaded movie clip. :: Doesn't work!
Here is a sample code from this menu, where it defines the fields that populate the menu:
var menu_0 = ['Destinations',['Africa#destinations1.swf|Rwanda#destinations1.swf |Uganda#destinations1.swf|Kenya#destinations1.swf| Madagascar#destinations1.swf|Botswana#destinations 1.swf',
'Asia#destinations1.swf|Japan#destinations1.swf|In diat#destinations1.swf']]
how to direct the link in the menu in a specific frame in an externally loaded swf? I can do this on a 'normal' button using placeFrame, but because I'm unfamiliar with how this particular menu is made, I don't know how to implement what I know.
View 5 Replies
Sep 20, 2009
Does someone have a working fla to illustrate how to load an external movie and zoom and pan to specific location of this movie (with easing)? With actionscript, not necessarily with a control for the user. I am looking for it for some time and unfortunately my programming abilities are not yet sufficient to find it out from scratch (but I am working on it).
View 2 Replies
Feb 23, 2010
Is there a way to go to a specific frame with in a swf that has been loaded to a new blank? I been looking round and can only find going to a specific frame within the main swf..
View 3 Replies
May 16, 2005
I have a dropdown menu that I'm learning to use from a tutorial. It's just a little over my head and am wondering if someone could help me. Here's my situation:
1) The menu has the title, DESTINATIONS. Submenu dropdown are a list of CONTINENTS. Rolling over CONTINENTS show COUNTRIES. This works.
2) Clicking on a Country should:
A) load an external swf into an empty movie clip :: Works!
B) go to the COUNTRY specific frame within that loaded movie clip. :: Doesn't work!
Here is a sample code from this menu, where it defines the fields that populate the menu:
var menu_0 = ['Destinations',['Africa#destinations1.swf|Rwanda#destinations1.swf |Uganda#destinations1.swf|Kenya#destinations1.swf| Madagascar#destinations1.swf|Botswana#destinations 1.swf',
'Asia#destinations1.swf|Japan#destinations1.swf|In diat#destinations1.swf']]
Could someone help me figure out how to direct the link in the menu in a specific frame in an externally loaded swf? I can do this on a 'normal' button using placeFrame, but because I'm unfamiliar with how this particular menu is made, I don't know how to implement what I know.
View 5 Replies
Apr 28, 2010
Anyone knows if there's a way of calling an specific frame or movieclip from a loaded xml file? I have some xml text loaded to my flash site and i want to have a link in this text that when clicked loads a comment form that is in a different frame in the timeline. I've been looking and googling and i havent found any solution to this.
View 1 Replies
Nov 28, 2009
when a external swf file gets loaded into main swf file, i need to detect while playing external file reach to end so that i can unload that file and move to another frame on root of main file. I am not getting how to identify external swf play reach to end so that i can unload swf and jump to root specific frame of main swf.
View 1 Replies
Jul 2, 2009
Ok - i have a main movie template. It simply contains 'loaders' to load in other swf files. There are a total of 6 different movies being loaded one at a time. It's a magazine of sorts.
So page 1 will load swf 1, and so on.
How can I configure this that if we want a user to go directly to page 3 of the movie - we can give them a URL to do it.
Neiman Marcus does something very similar.
This will take you to page 3 of their flash movie: [URL]
View 1 Replies
Sep 25, 2009
A lovely client of mine just decided after we had completed his flash presentation that he would love to be break the presentation into smaller chunks so we can link to the different parts of the presentation directly even thought it's one movie. Is this possible? I have a holder movie that loads each section in a movieclip when the user clicks on a link in the navigation. I thought I would follow this technique:
View 2 Replies
Oct 24, 2011
How can I load movie(1.swf) into the current file and make it go play the specific cue point (of the child's file)?
[Code]...
View 1 Replies
Oct 24, 2011
I would like to load the "1.swf" to the "hub.swf"(ROOT MOVIE) and have it gotoAndPlay(2) using AS2.[code]...
View 2 Replies
Sep 15, 2008
I want to "Test Movie" to get a feel for what my animation looks like as a SWF file but I want to test it from a specific frame. My reason for this is that normally if I go to Test movie, I have to watch my entire animation from the start when really, I might want to test it only to see if a certain part works. And I do realize there is the "play" option in the timeline using Enter but that doesn't have the same effect as Test movie.
Is there any way of testing a movie from a specific frame?
View 1 Replies
Feb 2, 2009
From main movie I call a 2nd movie to appear over the main movie using [code]all good and working.Now, from a link in the 2nd movie, I want to close the 2nd movie and go back to the first movie advancing the first movie to another page (frame).[code]but how can i tell my first movie to go to a specific frame.
View 3 Replies
Feb 11, 2010
I am trying to say to a movie clip, which is defined in a external xml file, to play. now, i got that value from xml and i hold it in a variable But how to say now that this is an instance name of some movie clip on a stage and that movie needs to play.
everything i tried is just giving me an error like:
TypeError: Error #1006: value is not a function. if i write the code like this:
Code:
targetit.play();
or
TypeError: Error #1034: Type Coercion failed: cannot convert XMLList@23e20d29 to flash.display.MovieClip.
if i write the code like this:
Code:
MovieClip(targetit).play();
targetit is an variable that holds the instance name of movie clip
View 2 Replies
Mar 21, 2011
I know how to do this in AS2, but not AS3: how do I start my movie on frame 3 instead of frame 1?
View 3 Replies
Mar 3, 2005
Im having the following problem. Im trying to load a movie.swf, but i want this movie.swf to be loaded to a specific frame. I dont want it to load and start at the frame 1, i want it to be loaded and start at the framr 5.
View 3 Replies
Apr 7, 2005
i'm trying to do a simple thing: a site where the background fades in and out between areas... ...and i'm trying it for a week...and still have no idea on whow to do it. i've seen many and many tutorials but there's no information regarding to loading movies in a specific frame!(like "call"-calling a specific action script frame?) here's what i have: a main movie (1frame) with 5 layers: actions, menu, bgone, bgtwo and border. and my problem is making the interaction between those areas, since i can't make the menu load the movies in the specific frames,to the specific layers... perhaps i'm just trying to find the wrong answers, or is is impossible?
View 3 Replies
Mar 18, 2009
I am building a flash image gallery which calls on xml to load the images and captions - so far so good... My problem is that I want the top node to tell the flash movie to go to a specific frame...
View 2 Replies
Jan 14, 2010
I have a all flash site that has several FLV's that people can click on called Green Solutions, Home Control, Temperature Control. My client wants to know if its possible to put a hyperlink in a email to his clients that would directly link them to any one of those videos. I assume I need to pass a variable of some kind but I am at a lost of where to start with this thing.
View 5 Replies
Jul 22, 2004
I'm trying to build a full flash site. I have movieA (main movie) that loads the rest of the movies (movieB, movieC, movieD...). MovieA is the menu. When I want to "come back" from this movies to the main movie, I need to move the header to a specific frame of movieA, diferent depending on the movie I have previously loaded:
movieA: loadmovie (movieB, movieC, movieD...)
from movieB: loadmovie movie A (frame2)
from movieC: loadmovie movie A (frame3)
from movieD: loadmovie movie A (frame4)
Is it possible or when you load a movie you can only start playing in frame 1?
View 7 Replies
Sep 17, 2009
I need some actionscript which I can put into a movie and when that movie gets to a certain date i.e. my birthday the file redirects to my website. I would like the movie to always redirect to my site, even when that date has passed.
View 2 Replies
Jan 14, 2010
I want to preload a movie into my main movie (so I know it's safely loaded fully). BUT I don't want it to start playing until a specific frame in the main movie? Preload movie but can't play until a specific frame
View 5 Replies
Jan 14, 2010
I want to preload a movie into my main movie (so I know it's safely loaded fully). BUT I don't want it to start playing until a specific frame in the main movie?Does anyone know how to do this in actionscript 2.0?
View 2 Replies