ActionScript 2.0 :: Load Multiple FLV Files With Progress Bar?
May 19, 2010
This might be a tough one, so brace yourself I have a .swf file that plays until a certain frame.
Once the certain frame is reached, I'm trying to play an external FLV file that it loads onto the stage.
Everything works fine so far, I can display a Progress Bar while downloading the external FLV file using this script:
[Code]...
View 9 Replies
Similar Posts:
Feb 5, 2010
I'm trying to set up a preload system that can load multiple XML files and manage an overall progress bar but got immediately screwed by ProgressEvents not bubbling. My basic code set up is: Document Class
XMLManager extends EventDispatcher
XMLloader extends EventDispatcher
So document class up an array of xml paths and passes that to the XMLManager, that then iterates through the array and creates a new XMLloader for each path and stores those XMLloaders in another array. The XMLloader goes off and creates an URLLoader that loads the XML. It has listeners for Event.Complete, IOErrorEvent.IO_ERROR and ProgressEvent.PROGRESS which is fine.
I'm getting the correct progress data in my progress handler but what I want to do is broadcast that progress data straight back up to the Document Class which I had thought would be where dispatchEvent would come in by doing something like this in the XMLloader class:
[Code]....
View 2 Replies
May 7, 2010
I'm in the middle of something that's somewhat perplexing. Brief synopsis: It's a full screen kiosk type application with only touch screen control. Sometimes, administrators need to extract large chunks of data onto a USB memory stick to take offsite.
there's a folder on the filesystem with permissions set so that the user that is the web server can access and control it. There are around 100 directories in this folder, each containing around 40 megs of data split into around 10 different files. It's this directory structure I am copying to the USB stick.
Right now, I'm using AS3 to trigger AMFPHP which successfully executes the copy, but it takes about 5 minutes to complete the action, so obviously it needs a progress bar to show state of the copy.
I can execute the linux command of
Code:
exec)("cp -r /$origFileDirectory /$usbStickDirectory");
which obviously works, but there's absolutely no feedback until the entire operation is done (like I said, between 3 to 5 minutes)
Is there anything native to AS3 that I'm missing? Perhaps I've run too far down the PHP path and missed something obvious on the actionscript side?
View 6 Replies
Feb 22, 2006
why the preloader script below might not be working correctly in all browsers? It definitely loads the files properly, but the progress bar does not show in firefox. It just shows a blank screen until the files are 100% loaded, then the enter site logo appears.
I have tried the following things:
1. Using relative vs absolute file paths for the external swfs makes no difference to the behaviour.
2. Changed publish settings to export AS classes in other than the first frame - didn't have any anyway. No change.
3. Unchecked "export in first frame" for absolutely everything. Tried both checking and unchecking this for the actual loader_mc. No change.
I'd post my fla instead of code, but I'm using Flash 8 and can't save any earlier than MX2004 and people don't really seem to look at them that much when I post them. If anyone would like to see, I will upload.
Preload code (on main timeline)
Code:
stop();
onEnterFrame = function()
{
[Code].....
View 1 Replies
Oct 23, 2006
im making a little flash game and im wondering if this is possible.. I want to (just because) create one file which contains all the data that i want to load into my flash movie.
say i place all the files/sounds/external swf's in one folder and sort them how i like.. Then i zip that folder and place it on my webbserver.
is it now possible to load in that zip file and retrieve the contents of it using only flash?
it offcourse does not have to be zip format.. i just want that general concept.
View 2 Replies
Dec 11, 2007
var myObjArray = new Array;
myXML = new XML();
myXML.load("test.xml");
[code].....
View 4 Replies
Mar 8, 2010
I'm new to the group and to Flash coding. I'm working on a proof of concept for work and I am completely stumped. With my limited knowledge and a lot of questions I have been able to get my template working but now the tricky part, it loads from 1 XML file just fine, but I need to cycle through 3-4 files that are identical in format, just different feeds.[CODE]...
View 1 Replies
Jul 14, 2005
I have an array filled with xml files locations. I want to load each one in and then attach the result to a variable, which describes its content, e.g. contact, home, support etc.Is there a wau of doing this with a loop? Also I would like to know the total size of all the files and how much is loaded whilst loading, for the preloader.
View 2 Replies
Apr 21, 2009
How to load multiple XML files and know when all loaded
I load several XML files at the start of my AS code. Using addEventlistener/Event.Complete for each URLloader I call upon functions to get data from the respective XML files.
Like this:
// Loads themes from XML file themes.xml
themeLoader.addEventListener(Event.COMPLETE, getThemes);
themeLoader.load(new URLRequest("themes.xml"));
[Code]....
In those functions I call other functions to start my application.
The problem is that if some XML file (like cats.xml above) has not been loaded before I call MainShow(), I get errors since MainShow() also uses data from the cats.xml. Thus I would need to somehow wait for all my XML files to be loaded before I start up my application.
How can I do this in a convenient way?
View 4 Replies
Apr 20, 2007
I've got several archived text files - 040107.txt,040207.txt, 040307.txt, for example - and I want to be able to build a dynamic link which loads whichever file is selected intothe Flash movie. This list needs to be able to build itself as Iwrite new files every day and add the old ones to the archive.
View 6 Replies
Apr 11, 2010
I have a drop down menu whereby the clicking of a button causes it to move to a specific keyframe in the timeline. I also have multiple buttons which load external swf files.The problem is when i navigate to the drop down menu the loaded external files keep dissapering because they are not on the keyframe where the drop down menu is actuated. Is there any way of coding it so that which ever swf file is loaded remains there whilst the drop down menu moves to its specific stage in the timeline?
View 1 Replies
Apr 19, 2010
I'm using AS3. I have multiple swf files to load in an array, and then play them from a master swf file. I've found scripts that can do that, but I can't find one to continuously loop through the swf files. I need a script that can load multiple swf files, then loop through them all. This is for a tradeshow display that needs to run all day. They are large files, so memory is a concern.
View 1 Replies
Nov 3, 2009
i want to load 4 different .swf at the time while my Intro is playing on the index page. yes now thats the catch. i am working with html. NOT the whole website is in flash. everything is fragmented and separate.[code]this is the website (lets consider so) and while my intro finishes loading and starts playing, i would like all the other 4 "SF*.swf" should be downloaded in the temp files of user comp, if done so successfully, while browsing through the individual html pages, they will not face the loading bar again n again (which becomes irrirtating for the user if they have to wait for each page and look at the % of bytes being downloaded )
1. is it possible to download all these individual swf files in the temp folder of the user comp?
2. if so, HOW?
View 1 Replies
Apr 7, 2011
I'm trying to use one html page to load multiple swf files and I can't figure out the correct code to do it.Basically, each main page in my navigation is a separate swf.I need the swf files to be able to load seamlessly over one another.
View 9 Replies
Jan 28, 2011
In my project I used main document file, which could load multiple nested animations as a separate files. In the main document I had a global function, for example:
_global.onAnimationEnd(mc:MovieClip){...}
and in animations (could be nested) I just called it like:
onAnimationEnd(this);
View 2 Replies
Oct 3, 2009
I have managed to load an external text file in one place one the maintimeline. I would like to do the same thing on other frames. When I go to duplicate the same thing that I did on the first one I get a duplicate textReq request. Do I need to give the textReq a more specific name for each section? When I did this the movie wouldn't even recognize and of the code that was working before.I am attaching link so you can see sections I am talking aboutAlso you will notice that the swf file I loaded won't go away. That's another problem...ugh.Here is code on maintimeline:
stop();
import fl.transitions.*;import fl.transitions.easing.*;
import flash.net.URLRequest;import flash.display.Loader;import flash.events.Event;import
[code].....
View 7 Replies
Jul 15, 2006
I wrote this script a while ago and it's worked extremely well for me ever since. I use it in nearly every project I do. But the other day I was asked to do a project where I could only use Flash 7.
This is a class I made to easily handle multiple file preloading by passing it an array of files to load. It only has two useful methods. One gets you the current total progress (total of all the files 0-100%) and an onLoadComplete. The actual usage is in the top of the file. It works great under Flash 8, so go ahead and use it.
View 3 Replies
Feb 18, 2012
I have got 3 swf files scene1, scene2 and scene3. Out of which scene2 and scene3 are embedded inside html files named scene2.html and scene3.html. I also want to include pre-loader at every intervals between the scenes, since the total file size including images and scripts is around 4mb.
View 3 Replies
Aug 27, 2009
trying to load a JPG. Here is my code:
import fl.controls.ProgressBar;
var pic_loader:Loader = new Loader();
var my_pb:ProgressBar = new ProgressBar();
my_pb.source = pic_loader.contentLoaderInfo;
[Code]....
The image loads but it does not "take the place" of the "pic_loader" movieClip like it did in As2. The main issue is I am getting this erroe message:
TypeError: Error #1034: Type Coercion failed: cannot convert loader@40fad881 to flash.display.Loader.
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
at flash.display:isplayObjectContainer/removeChild()
at as3_test_file_fla::MainTimeline/finishLoading()
View 9 Replies
Apr 17, 2009
I need to preload 12 images and 12 mp3 files, and the xml file for my text, at the beginning of my swf file.
Is there any fairly easy way to do this? I've searches for tutorials/examples, but can't find anything helpful. Is there a way to preload a folder, where I can keep these files? Or some way to get all files preloaded in the same preload progress?
View 7 Replies
Sep 19, 2009
the following code traces the loading status of '1.swf', and once it has loaded, starts loading '2.swf':
preload1.loadMovie("portfolio/100_design/1.swf");
onEnterFrame = preLoadMeter;
var tl:MovieClip = this;
[code]....
View 5 Replies
May 9, 2011
i am currently building an application ( projektor) which loads big local files (no webserver) for some reason the flash player freezes until the whole file is loaded. i cannot display the load progress. the same code works fine when used with streaming from a server.
View 2 Replies
Sep 20, 2009
I have a Flex3 application which has to be capable of uploading multiple files and monitoring each files individual progress using a label NOT a progress bar.
My problem is that a generic progress handler for the uploads has no way (that I know of) of indicating WHICH upload it is that is progressing. I know that a file name is available to check but in the case of this app the file name might be the same for multiple uploads.
My question: With a generic progress handler how does one differentiate between 2 multiple uploads with the same file name?
View 3 Replies
Apr 14, 2011
What's the best way to preload a bunch of assets (namely images) using only one progress bar?
Will the ProgressEvent automatically tally up the bytesLoaded and bytesTotal numbers for everything being loaded through that event?
View 3 Replies
Sep 15, 2009
The application will pre load 5 different images and place them in an array of bitmaps.My only problem is that i want to display a progress bar to the user.I know how the calculate the progress of one image:progressBar.source=loader.contentLoaderInfo;but i want to load the images using a loader one by one, which means that after each loaded image
View 1 Replies
Mar 25, 2011
Is it possible to have a single upload progress bar with multiple file uploads using uploadify?
View 2 Replies
Apr 29, 2009
I'd like to insert script in the example below that would indicate the download progress of two successive movie clips on a page.
import fl.video.FLVPlayback;
import fl.video.*;
explainer.source="movie1.flv"
[Code].....
View 1 Replies
Feb 17, 2011
I need to show multiple sections in single progress bar where each component is of different color.
View 2 Replies
May 29, 2011
I am trying to upload image files to my server using AS3 and PHP, and at the moment I am succeeding in uploading multiple files and restricting it to images only, but since I am finding it difficult to figure out how to have a loader bar show when the files are being uploaded, as well as executing a function once all files have been uploaded to go to a specified frame.
Here is my code thus far,
AS3:
import flash.net.FileReferenceList;
import flash.events.Event;
import flash.net.URLRequest;
[Code]....
1: how can I display a percentage or a uploading bar indicating the progress of the files being uploaded?
2: How can I launch a callback function after ALL files have been uploaded successfully?
3: How can I make the file browser appear on click, and not upon loading the flash file?
View 1 Replies
Mar 31, 2011
I was just wondering that is there a way to create a multiple file select like Facebook (using flash, I think.) and with a progress bar that show every photos progress in one progress bar. Have a clue or a script which can be customized and can be used easily?
View 2 Replies