ActionScript 2.0 :: LoadMovie To Load In A Variable Amount Of Movies?
Sep 10, 2010
how do you load in a variable amount of jpgs into an empty movie clip? for example, i have a mc called 'holder' which loads in and replaces the previously loaded jpg every 10 seconds from the folder called 'images'. but how can i make it work if the user first puts in 5 images, but at a later date changes that number to 7 images?
View 1 Replies
Similar Posts:
Jul 24, 2004
I'm trying to load some swf movies using loadMovie, but I'm having the folllowing problem:
There are three movies: 1.swf, 2.swf, and, 3.swf.
=> 1.swf loads inside 2.swf
=> 2.swf loads inside 3.swf
When I test 3.swf, it plays only 1.swf (exacly where I put it in 2.swf - coordinates) but doesn't play 2.swf.
Everything looks correct, includind the containers.
All actionscript is in the frames and I'm using Flash MX.
View 1 Replies
Nov 8, 2003
I am working with Flash MX. I am creating a site with a Main.fla which contains buttons to load other SubPage.swf files. For example, I have a Page1 button with the following actionscript code.
on (release) {
_root.contents.loadMovie("page1.swf");
}
It works fine. Now when I work on the Page1.fla, I am trying to load other Movies in the same fashion. It works when I CMD+RETURN to generate the .swf file. However when I CMD+RETURN the Main.fla file and load the Page1 file, the buttons won't load the movies. Is this a Target Path issue? How would I remedy this?
View 4 Replies
Jul 12, 2004
I load 2 movies at the same time using loadmovie() function onto 2 different locations on the flash page. i would like to know if i can have a button in the second movie that can control, lets say play, the first movie when this button is released.
View 14 Replies
Jul 12, 2004
I load 2 movies at the same time using loadmovie() function onto 2 different locations on the flash page. i would like to know if i can have a button in the second movie that can control, lets say play, the first movie when this button is released.
View 14 Replies
Jul 28, 2007
I'm trying to combine PHP/SQL and Flash. I've got a problem now. I want to load a variable that contains an url to an image. so the variable is like this: [URL] Now I want flash to load the image, not the text. The variable is called 'img1' but the loadmovie function doesn't work when I put it in.
View 2 Replies
Jan 29, 2009
i hav one main swf inside which iam loading second swf, but instead of hardcoding it, iwant the secound swf to calldynamically using variables.
The querystring is as follows:
<PARAM NAME=movie VALUE="film.swf?extSwf=movie.swf">
This method works fine:
[code]....
View 2 Replies
Mar 16, 2006
taken from this link:
[Code]....
My problem: I am attaching variable number of MCs dynamically(not in the library), and i have to do so using flash6 or older. How can i use then loadMovie+onClipEvent handler to invoke something, if i am attaching MCs dynamically, and onClipEvent works only on MCs attached on the Stage(actions "on" those mcs, not "inside" them). Probably using classes. Any other option? and if not, can anybody guide me through assigning such class to such mc? EDIT: Ok, i also have done following:
[Code]....
and although the movieClip IS in library, and it DOES have MovieClip class assigned, onData event handler is NOT triggered and nothing is traced. Can the reason be "attachMovie" function?
EDIT2: aha. well, again it happened that attachMovie's methods are not yet initialized, so it was not yet "the proper time to assign" handler onData on those MCs. [only sen knows why ]. So that even trace(mc.stop()); at this point traces undefined, where it should trace [type Function], since stop is MovieClip's class method. Stupidstupidstupid.. relax...
View 3 Replies
Oct 30, 2006
I used the "loading random movie" tutorial (http:url....) to load 3 external movies. It worked great.But now, my client wants the movies to load one after the other. Each movie is interactive, but requires you to click on it, so it plays an intro and stops. Each movie is built exactly alike. So, I would like a movie to play, then stop for a certain length of time (long enough for the user to read some text). If after that length of time, the user does not intereact with the movie, then I want the next movie to play in it's place. If the user does interact with the movie, I want it to just stop at that movie.
View 12 Replies
Jun 3, 2011
I have loaded a .swf into my main timeline, but it's quite large. I am trying to get it to fit in the constraints of my current movie. I have read that by putting it into a movie clip, it will constrain to that dimension. How do I accomplish this?
View 3 Replies
Jun 8, 2009
I have a menu which is a external Swf, It consists of 6 swf files.These menu's are loaded dynamically containing info from XML.When you click on of one the 6 buttons I want to use loadMovie to load'one of the swf files specified on the button' into a container called 'Scroller'.The idea is that it replaces the loaded swf with another one when you click another button.I gave everything instance names including the scroller.When i test the movie It does load when i click on button1.When i click on button 1 again, it even loads again.If I Click on button 2 (or 3,4,5,6) after i clicked on 1 it replaces the first swf.But after that nothing else works. When i click on one of the other buttonsthe trace doesn't even come up.
Code:
movieclip.button1.onRelease = function(){
trace("movieload");
[code].....
View 4 Replies
Apr 1, 2012
I've attached a source file below, I'm kinda stuck. Basically, its an FLA that has a variable that changes (smscounter) based on whatever number is read in from an XML file (on my server). There is a big movieclip called "rewinder" on frame 1 of the main stage. There are left and right buttons that navigate between frames within that movieclip "rewinder". What I'm trying to do in theory is:
if(frame != 2) {button_right.visibility = true};
if(frame == 2 && smscounter > 5) {button_right.visibility = true};
if(frame == 2 && smscounter < 5) {button_right.visibility = false}
I've been told that won't work simply because once a variable (visibility) is set, it's not going to just continually check it, so I have to dispatch an event? I've tried 3-4 tutorials and I can't get any to work. Now a few things: I would LOVE to avoid anything super complicated. All I need is on frame 2 for the button to not be there IF smscounter is below 5. Other tutorials required another class and document class, but I couldn't get them working The buttons are currently outside the rewinder movieclip. I put them inside and on each frame, but then I couldn't get them to react to a rollover. The code is about as optimized as if a first grader wrote it, mainly because I'm a designer and I've been having help along the whole way with this.[URL]..
View 1 Replies
Nov 28, 2010
How can I define functions that can receive unknown/variable amount of parameters?
View 2 Replies
Jan 2, 2011
I have a preloader that I downloaded... What I want to do is have this load only a certain percentage of the move before it continues to play the file.I assume that I have to edit the line of code that gets the total amount of bytes for the file itself... expressed below:
Code: Select alltotal = this.getBytesTotal(); // Movie Length
Since the variable is 'total' how do I make it load only 25% then start? I
Code: Select alltotal = this.getBytesTotal(25); // Movie Length ?
Code: Select alltotal = this.getBytesTotal() * .25; // Movie Length ?
View 1 Replies
Feb 11, 2012
I have been having a serious issue with custom video where flash is saying that the amount of the video so far played is MORE than the amount that it has downloaded, which is clearly impossible. This results in various problems, such as the playhead (scrubber) moving past the end of the loader bar. I posted a simple demo that displays the amount loaded and the amount played in text fields. You can see it at: [URL][Code]...
View 5 Replies
Feb 11, 2012
So I have been having a serious issue with custom video where flash is saying that the amount of the video so far played is MORE than the amount that it has downloaded, which is clearly impossible. This results in various problems, such as the playhead (scrubber) moving past the end of the loader bar.I posted a simple demo that displays the amount loaded and the amount played in text fields. You can see it at: URL...[code]I encoded the video at a high rate so that it would download slowly. It may not playback smoothly, which I am not concerned about. What I am concerned about is the numbers below the video what are derived from ns.bytesLoaded and ns.time. If you watch it for a bit, the amount played should exceed the amount loaded.
I double checked the video duration and the bytestotal that flash is reporting and they are correct. I don't know of any way to check the accuracy of bytesloaded.If your internet connection is super fast, you may not see the issue - it only occurs when it is playing back faster than it is downloading - if this is the case, you may need to throttle your speed down, or start downloading a large file while you are watching this demo in order to see the issue.But this is a serious issue and means that building custom video interfaces with loadbars and playheads is impossible!
View 1 Replies
Jan 10, 2010
I have a quite large AS3 project, that involves loading external images and videos. The videos are requested one at a time. But for the sake of the UI experience I decided to load all images at once, added them to a container in different movieclips and then fade them in and out.
It all works fine, while I have 10 to 15 images, over that it starts to deteriorate the performance. Actually I'm not even sure that the problem is the performance, but the thing is that flash starts doing weird clunky behaviors, specially related to mouse interaction.This is a link where it works fine, with about 8 images in the xml.
[URL]
Probably the solution would be loading one by one, but if it's performance, what's going to happen when the timer slider cycles through 30 and they are all loaded anyways?
View 3 Replies
Aug 22, 2003
The situation is this: Im trying to make a pre-loader that displays the load amount in text as a % and has a loading bar that will only load when the movie loads. When the movie is fully loaded the loading bar fill be full and it will display 100%, when the movie is half full it will be 50% and the bar will only be half way across. If I wanted to make the loading bar a specific width how would I do it?? At the moment the bar only seams to want to be 100 wide. The script im using so far is:
[Code]...
View 4 Replies
Jul 20, 2006
how can you load a Movie clip with a variable name?? My example is that I have a custom menu with png's that are loaded by XML and I need to load a Different submenu/ content depending on which button i Click...
View 1 Replies
Nov 6, 2002
can i use a variable to load a new .swf file? this doesn't seem to work...
[Code]...
View 2 Replies
Apr 18, 2009
I have several movies (movieA, movieB, movieC) that have a button in them that loads another movieb into the same level thus replacing them. My problem is that i need the movieB to start playing from a particular frame depending on which movie, a, b or c loaded it.
I'm trying to find a way of using variables to make it work or maybe just a simple gotoAndPlay function but with no luck. Can you send a variable via loadmovie function?
View 2 Replies
May 15, 2005
I have a variable that is refers to the names of folders, and I need to insert the variable into the pathname when I loadMovie. I cannot seem to get the variable to become part of the pathname
loadMovie('VARIABLE/image.jpg', _root.loadhere);
I've tried parenthesis, [], (), do not know the correct way to call the variable.
View 2 Replies
Mar 20, 2006
a) thumbURL is a variable loaded from an XML file. The value is being passed correctly into Flash, as I have traced it and it outputs fine. thumbLoc is a number which increases through a for loop. So thumb0, thumb1, thumb2 etc. are the movie clips I want to load thumbURL into. The thumbURL I'm trying to load is in the format [URL] I have the following code:
[CODE]...
View 1 Replies
Jan 31, 2003
I have a main movie, and use the following code to call an external movie:
on (release) {
loadMovie ("http:url....);
}
Fine I've no problems with this, however once I am in portfolio.swf I want to be able to call an ASP file when I click on a button I.e if I click button 1, I get files records for ID 1 and if I click button 2, I get file record for ID 2. The button click happens in the main movie, have I can pass a variable in between seperate movies?
View 3 Replies
Jan 25, 2010
how to show variable from swf file with loadmovie?if main.swf loadmovie mc1.swf mc1.swf can sent variable in input text to main.swf?if it can how to show variable from mc1.swf in dynamic text in main.swf?
View 2 Replies
May 16, 2002
The tutorial in The Best of Kirupa isn't working for me! When I try doing this:
rn = Math.round(Math.random()*1000000);
loadVariablesNum ("flashdata.txt?reload="+rn,0);
I get a debug error: Error opening URL "file:///C|/pathtofolder/flashdata.txt?reload=263757" Where the reload variable is the random number and flashdata.txt is the file that contains the variable I need.
View 9 Replies
Apr 18, 2004
Is it possible to access a global variable from an swf on a different level than another (outside of movies)? Or are they only global in the sense that they can be accessed from different scenes in the same movie? I want to check whether or not a certain movie (called by loadMovie) is on a certain frame (if else statement), and then act accordingly (tell it to play a certain frame in that movie [shut itself down, figuratively], or nothing).
View 5 Replies
Mar 14, 2009
Oddly if I use a quoted string, like
loadMovie( "http://www.miniclip.com/games/cube-buster/en/cubebuster.swf" , 1);
it works fine
But if I pass in a variable:
var fullpath:String = "http://www.miniclip.com/games/cube-buster/en/cubebuster.swf"
loadMovie( fullpath , 1);
it fails ???
Can't find anyone else's comments on such an issue.
Using flash 8, as2 on Mac osx
The example above remote domain example works fine within flash IDE
My actual application using a relative path to a sub directory, for a little obfuscation.
View 1 Replies
Jan 28, 2009
I'm designing a game where the levels are too big to be in one swf. so each level loads up a new movie- but if my wildest dreams came true i would be able to, for example, load level 2 and have it remember how well you did on level 1.is there any way to do this? to inject a variable from the first movie to the second one after it takes over?
View 3 Replies
Sep 29, 2004
Basically this script works just fine and loads the appropriate movie. The transistion exit frame also works correctly. What I am trying to do is load the movie site_services.swf and jump to frame label "database" after the preloader. I was attempting to use _root.contents.FLabel = "database"; to set the variable.
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "site_services";
[Code]....
View 2 Replies