ActionScript 3.0 :: Multiple SWF Load - Keeping A Reference To The Loader And The Classes Holding The Loaders

Jul 31, 2009

I'm loading a bunch of SWFs at the same time. I'm using a custom class to do the loading. Most of the time they all load OK, however occasionally one or two will be unloaded (I can see that in the console) before we get to the Event.COMPLETE. The ProgressEvents are all fine - I can see them loading, but then boom - they're unloaded.

I've done a bit of digging around and discovered that this may be a bug in the Loader class where if you are using multiple instances of the class then sometimes one or more will be Garbage Collected before they finish loading and are therefore unloaded. I've tried keeping a reference to the loader and the classes holding the loaders and I'm still having the problem. The solution is to queue the loads and load each swf in order which isn't a problem, just a bit irritating.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Load Multiple External Images Into Mc Instances On Stage / Using Different Loaders

Jul 29, 2010

I'm using this AS to load multiple external images into mc instances on a stage, using different loaders.[code] The external images always load from the upper left corner down,  how can you make the image load from the center of the instance on stage?I found this code below and doubt it will work for me since I have 5 mc instances on different parts of the stage, so the stage wouldnt be a good reference point.[code]

View 1 Replies

ActionScript 3.0 :: Loader Class - Error 1061: "Call To A Possibly Undefined Method Load Through A Reference With Static Type Loader"

Oct 20, 2010

siteLoader.as, Line 23 1061: Call to a possibly undefined method load through a reference with static type Loader.

[Code]....

View 2 Replies

ActionScript 3.0 :: Keeping Loader Contents After Loader Removed From Memory

Aug 21, 2009

I'm loading some images with Loaders, cloning the BitmapData to a new Bitmap, and adding the Bitmap as a child of a Sprite. So far, so good. I want the Loaders I'm using to be removed by garbage collection, which they seem to be. The problem, or so it seems, is that when the Loaders are cleaned up, the Bitmaps I'm creating lose their data.

Edit: All this is happening when a class is instanced, and many copies of this class are being used as actors in a game. As the Actors are being created the older ones are losing their BitmapData to garbage cleanup. When all of them are finally loaded, only the last few are visible. I've rewritten my posted code as a class. If I prevent the Loaders from being cleaned up by somehow keeping a reference to them, the Bitmaps don't lose the data, but I don't want these Loaders hanging around.

[Code]..

View 1 Replies

ActionScript 3.0 :: Loaders Work Only In Movieclips Classes?

Mar 16, 2009

I'm surprised that a XML loader works only if it is embed in a MovieClip class and not any external class.

I have my XMLLoader class and the loader didn't work.

I've added "extends MovieClip" and it worked.

View 7 Replies

ActionScript 3.0 :: Loading Multiple Images To Multiple Loaders With A Loop?

Sep 2, 2010

i have been building a library that has thumbnails which you click to view the full image. i have built the application it works but i want to change the way the image on the actual thumbnail loads using code instead of manually adding the value to the url loader component.

var myX;var instanceN:String;trace(instanceN);var currentLoad:uint = 0;// current loader and image loadingvar thumbnailURL:String;//Thumbnail URLvar thumbReq:URLRequest;// Thumbnail url requestfor(var k:uint = 0;k < iL_btn.length; k++)[code].....

the loop runs fine without the last line of code which i've commented out.the make up of these thumbnails are a uiLoader component which are each inside there own movieClip.what i wanted this to do was every time the loop runs it currentLoad adds 1 to its value then that value is subbed into instanceN:String and thumbnailURL address that bit works the trace statements read correctly.but my issue is using the instanceN value as the instance name path which then loads the current thumbnailURL value which is the URL address for the thumbnail picture.when i try to load the url address using the commented out code above i got the error .TypeError: Error #1010: A term is undefined and has no properties.the trace statements correct values below

the first value is the currentLoad value.

the second value is the instance name path.

the third is is the URL address for the thumbnail.[code].....

View 3 Replies

ActionScript 3.0 :: Error 1061: Call To A Possibly Undefined Method Load Through A Reference With Static Type Loader

Oct 20, 2010

When I use the following code inside a keyframe in a layer (Actions layer) it works fine. When I use it inside a custom class I get the following error: .../siteLoader.as, Line 19 1061: Call to a possibly undefined method load through a reference with static type Loader.

[Code]...

View 1 Replies

ActionScript 3.0 :: Load Multiple MC Into UI Loader?

Oct 15, 2009

I have a array of names corresponding to buttons selected the names allow me to load specific MC's in to a UI Loader in a new Flash movie by using SharedObject. My problem is that I have quite a few buttons but I'm only loading the MC's of the ones that were selected and I don't know how to load multiple MC's in to one Loader. Kind of like a gallery of thumbnails but the order depends on what items have been selected to show.Can anyone please explain how I could load each MC?this is how I am loading my array and thensome how I need to add these to a loader.

Code:
var selectedButtons:Array = loadButtons();
for each( var buttonName:String in selectedButtons )

[code].....

View 0 Replies

ActionScript 3.0 :: Load Multiple Images Into Loader?

Oct 15, 2009

Basically my aim is to use SharedObject to save the basically what I am doing is I have a list of buttons each has a name which when clicked the name is added to an array which is stored in a SharedObject. In another movie clip I am calling back the SharedObject and using the array information to display the images corresponding to the name in the array. And I got everything working except I don't know how I can load my images in. Because the same images are not always selected it means that I can't just load each image to a specific Loader because then I would end up with blank loaders.

View 4 Replies

ActionScript 3.0 :: Loader Class To Load In Multiple External SWFs?

Mar 9, 2009

In AS3 i am using the Loader class to load in multiple external SWFs (AVM1), each of which has a short animation which automatically plays when the swf is I obviously cannot control the timeline of these (i can't use local connection etc) but would like to load in the *.swf files, so they're in memory then add them to the stage when requested. the problem is that if i load them enmass. then use addChild when they are called, they have already played through and animated pre the addChild command.

(I cannot edit the swfs at all, and would rather not load them on demand at runtime)

View 5 Replies

ActionScript 3.0 :: Tweenlite Keeping Reference To The Clip?

Aug 17, 2009

TweenLite seemingly keeping a reference to my clip. In one method I do:

detail.btnBack.addEventListener(MouseEvent.CLICK, removeDetail, false, 0, true);

Then I have the removeDetail, and killDetail methods:

private function removeDetail(e:MouseEvent):void
{
TweenLite.to(detail, .5, { alpha:0, onComplete:killDetail } );
}

[code]...

This _seems_ to work, except the removeChild is not working - the detail clip is faded, and killDetail is called, but the clip remains. If I remove the TweenLite fade and do the removeChild right in removeDetail() the clip is fully removed from the display list. I've tried doing a TweenLite.killTweensOf(detail) within the killDetail(), before removing child on it, but that doesn't help.

View 7 Replies

ActionScript 3.0 :: One Or Multiple Loaders ?

Mar 8, 2010

I am making a web page and i have to load in to main page swf multiple swfs that represent background. First there is a gradient swf than swf with snow particle system. My question is what would be best practice to use one loader for all different swfs that are in the background or should i use different loaders for different swfs?Here is what i mean:

1.) var loader:Loader = new Loader();

I use this loader to load first gradient swf and after it it has completed loading i use same loader to load snow swf.

2.) var loader:Loader = new Loader(); + loader = new Loader();

I use this loader to load first gradient swf and after it it has completed loading i set it again to be loader = new Loader();
and than i use this loader to load snow swf.

3.) var bgLoaderGradient:Loader = new Loader(); + bgLoaderSnow:Loader = new Loader();

I use it to load gradient swf and than i make new loader,

bgLoaderSnow:Loader = new Loader();
to load snow swf.

So what would be best way to do loading of the swfs.

View 5 Replies

ActionScript 3.0 :: OOP: Multiple Classes - Add Functionality To The Buttons To Load Swfs Into Main Movie

Nov 2, 2009

I had to create a menu using array and I had to animate it. With some great expertise from people, I've accomplished that. But now I have a question about OOP, because I'm trying to add functionality to the buttons to load swfs into my main movie. Even though I strictly follow tutorials and exercises, I can't figure out how to reference a variable made in one class to another. For instance, I have index.as, navbar.as, and menubutton.as. I assume I need to add a loader to my index.as. But I can't trace the loader in my other classes. I've been told to effectively accomplish this, it is best to use custom event dispatchers. But I'm lost on how to use them.

View 12 Replies

ActionScript 3.0 :: Multiple Loaders In Loop?

Jul 6, 2010

in a loop i wish to load a sequence of images in an individual movieclip for each. e.g image0 in movieClip0, image1 in movieClip2 etc...

i've set up the loop and the movieclips are added using an array.

addChild(aMovieClips[i]);

when i use loaders.load(new URLRequest("assets/images"+section+cityCode+i+".png"));

it unloads the previous images and only shows one image in the last movieClip.

I then tried using loader[i].load but this didnt work.

I then tried creating the loaders outside of the loop and then adding them to an array but this doesnt seem to work.

specifically it breaks at aMovieClips[i].addChild(aLoaders[i]);

How do i go about adding a different image to each individual movieClip.

View 5 Replies

ActionScript 3.0 :: Time Out From Multiple Loaders

Feb 25, 2010

Picking up on something wvxvw said recently in another thread:[code]you shouldn't start several loading operations concurrently, you should wait for the first loading to complete and then start another loading, otherwise you are risking to get "request timed out".Had me wondering. I recently changed things around in several of my scripts when I found that running multiple loaders would speed my overall time spent loading by a significant amount (often halving the loading time).So I was curious for some more information and opinions on the matter.[code]

View 1 Replies

ActionScript 3.0 :: Load Multiple Swf Embedded Inside Html Files Sequentially With Pre-loader?

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

ActionScript 3.0 :: Multiple Loaders Wont Overlap

Feb 11, 2011

I have a menu swf with multiple buttons and an animated logo which is in a loader called myLoader

These buttons are in an MC which uses this[code]...

...and so on with the add.event.listeners and they all work great- they overlap the menu then disappear.

The problem I have is the logo always stays on top of everything. Looks rather stupid, is there a way I can hide this logo behind the swfs while they play?

View 11 Replies

Flash - Waiting For Multiple Loaders To Complete

Nov 23, 2011

I have an arbitrary number of images I want to load. I want to load them, wait until I get an Event.INIT for each, and only then proceed with the rest of the program. I know I can do that by having an Event.INIT listener update and check some count variable, but is that the standard approach? Is there a more elegant or AS-specific way?

View 3 Replies

ActionScript 3.0 :: Pushing Multiple Loaders Into Array At Once Freezes Flash

Aug 14, 2010

It works fine if I wait until the image is actually loaded (loadComplete) and then push the bitmap I create. If I try to push the loaders like you see here, it freezes up, every time. [code]..

View 5 Replies

ActionScript 3.0 :: Unexpected Errors, Multiple Helper Classes, Extended Classes?

Jan 9, 2010

The examples I'll use don't do anything - they're classes without ANY members - no variables, methods, anything.

Let's say I extends Sprite and call it MySprite.

I save it in test.core

[code]...

Now I create another custom class called MyWindow that extends MySprite.

I save it in test.windows

[code]...

Then I create another class that extends MyWindows (the example I'll use is a document class - but that doesn't matter - I've tested using an instance too).

[code]...

Notice that I'm not even trying to instantiate the helper classes - just having them there throws the error.

If there is only a single helper class, everything runs fine.

Also note that - as far as I can tell - this only happens when extending one class from another package, then extending that class with more than one helper object.I'm pretty sure there's no namespace bumps or typographical errors, as this is a very pared-down version of the original application.

EDIT: seems the problem exists even without the crossing packages - even extending MySprite in the document class with multiple internal classes generates this error.

View 4 Replies

ActionScript 3.0 :: Proper Syntax To Use Two Different Loaders To Load In Two Different Swfs

Nov 10, 2010

I'm newly migrating over from AS2 so I'm hoping someone can possibly help me here. I have created a main swf that cycles through two arrays loading in external swfs into two MC containers on the stage. All seems to work well; however, I believe there's an issue with using content LoaderInfo twice here, because my swf files behave inconsistently when I do so. I basically just use the same code to load into my two different containers and swap out the loader, array and MC container name. I cast the swfs as MCs to enable pause/play functionality.Can anyone see what's going on here? What is the proper syntax to use two different loaders to load in two different swfs simultaneously, yet only use contentLoaderInfo once?[code]

View 5 Replies

Actionscript 3 :: Loader() - Loading Multiple Images With One Loader?

Mar 11, 2010

I am attempting to load multiple images in AS3 and I'm exploring different options on how this can be done.I would like to have to only use one Load() instance and handle the various image assignments in the onComplete handler...here is my first attempt:

var buttonLdr:Loader = new Loader();
buttonLdr.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onLoadError);
buttonLdr.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadCo

[code]....

View 1 Replies

ActionScript 2.0 :: Keeping Multiple Nested Movies Separated?

Jan 22, 2005

Im making a game in which you controll some gattling AA guns..you start of with one and can later buy more...the gattling gun itself consist of 3 different movie clips and 1 text box (dynamic)WHen you buy more gattling guns later on , i just want to duplicate the original gattlinggun and let you place it anywere on the ground you want...

Firing is all good and dandy, each gun aims at mouse cursor and spews out bullets.. but for added realism ive made it so that each gun Can Jam (short delay befre can fire again)this does not work however because (as far as i can tell) what happens in 1 movie also happens in the others, so if 1 jams(the dynamic text box changes to JAM) all turrets get JAM in them(sticky i know)... now i want to know how do i make each movie completly separate , so they do not inherit properties from eachother...

View 2 Replies

ActionScript 3.0 :: ADDED Event In Loader.load And Loader.loadBytes

Sep 13, 2010

I got this very strange behavior from FlashPlayer debugger 10.1 r82. When I call loader.load method, no ADDED event is dispatched to the loader object. But if I open the file and call loader.loadBytes instead, an ADDED event is dispatched to the loader object. I suspect the ADDED event is dispatched because the content is being set as the child of Loader object, but why in the other case it is not dispatched?

View 4 Replies

ActionScript 3.0 :: Keeping A Reference Of The Original "x"?

Sep 17, 2009

Some time ago I was trying to build an XML gallery from a tutorial and things went wrong so I had to use another tutorial to fix it lol... anyway, in the original tutorial there was a very nice effect when rolling over the thumbs, basically it zooms in the thumb very smoothly. Now I'm trying to do the same effect to the gallery I have (which is fully functional now actually but the problem is that I just can't keep a reference of the initial value of the thumb's x (before zooming in on it on the roll over effect), eventually after I roll over a thumb a few times it is being displaced to the left... that's why I need to return it back to its position on the roll out... here's my code, I'll highlight the code lines that deal with the positioning and roll over/out effects.

[Code]...

View 7 Replies

ActionScript 3.0 :: Keeping A Reference Of The Original "x"

Sep 17, 2009

I'm trying to do the same effect to the gallery I have (which is fully functional now actually but the problem is that I just can't keep a reference of the initial value of the thumb's x (before zooming in on it on the roll over effect), eventually after I roll over a thumb a few times it is being displaced to the left... that's why I need to return it back to its position on the roll out... here's my code, I'll highlight the code lines that deal with the positioning and roll over/out effects...

ActionScript Code:
import fl.controls.ProgressBar;
import fl.transitions.Tween;
import fl.transitions.easing.*;

[Code].....

View 0 Replies

ActionScript 3.0 :: Removing Loaders And Listeners - Scrub Thumbs For Video Player Load And Unload Repeatedly

Sep 1, 2010

I need to have scrub thumbs for video player load and unload repeatedly. Something isn't getting cleared. Every time the thumbs are removed, there's a slight increase in the cpu baseline - something is piling up in memory.

[Code]...

View 4 Replies

ActionScript 3.0 :: Load External Swf's Keeping Interactivity

Sep 9, 2011

I am leading a team of developers on a project where we create distance learning classes to be attendedby students on the Internet.We created classes in Flash, ActionScript 3 in but I'm facing a big problem.I had an idea to create a kind of "software" using the flash in which my team could be better organized and where I could put (in the animation swf) what they should do that day(todo list).Until then it was all right, I created this software by loading text from the internet and created some php code inorder to edit them easily, even then no problem.[code]...

View 3 Replies

ActionScript 3.0 :: [CS4] : Dynamic Reference To Classes?

Dec 9, 2009

Been trying to make the transition from AS 2 to 3 but not without it's speed bumps. My first major hurdle has been trying to dynamically reference a class by only knowing it's name. I came across the code of import flash.utils.getDefinitionByName; but that's not working for some reason. It keeps giving me the error:

Quote:

ReferenceError: Error #1065: Variable characterType5 is not defined.

My code in getting this is:

PHP Code:

import flash.utils.getDefinitionByName;
var className:String = "characterType" + 5;
var tempClass:Class = getDefinitionByName(className) as Class;
var char = new tempClass();

View 2 Replies

ActionScript 1/2 :: Object Reference Between Two Classes?

Jun 28, 2011

classes. GiftMain and GiftItem. i attached GiftItem objects into GiftMain. Actually there are 2 more movieclips between them. i declare a variable in GiftItem as giftMain to reference it to the GiftMain. i have a function in GiftItem which is as below;

[Code]...
 
trace outputs the right object in this function in GiftItem class but at another place in the same class, it outputs undefined when it is traced even though it is global variable. I just want to reach GiftMain from GiftItem without using _parent or _root. How can i do that?

View 1 Replies







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