Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 540501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:14:48+00:00 2026-05-13T10:14:48+00:00

Let’s say I have some code like this in AS3 for(…) thing = new

  • 0

Let’s say I have some code like this in AS3

for(...)
   thing = new Thing(...)

The constructor for Thing is going to cause a swf to be rendered onto some movieclip.
If the loop is run 10 times or so, most of the time I will only end up with a subset of Things showing up on the clip. I’m guessing this is a problem that flash is having loading a bunch of Things at the same time.

I’ve been able to solve this problem by passing callbacks to the Thing constructor, and only continuing the loop once the previous Thing is completely loaded and calls back.

First of all, is this a known problem? Or am I going about this in the wrong way?
Secondly, is there any way I can tell flash/as to run this code in a linear fashion without the callbacks? It gets kind of annoying doing this everywhere.


EDIT:

So I think richardolsson is right, we must be doing something wrong. To restate the problem, if I try to load multiple swfs onto the stage, even as few as two or three, without waiting for the previous one to finish loading, I will get an unpredictalbe number loaded. For example, running the loop above 10 times, I may end up getting the 2nd, 5th and 10th Things loaded. The others seemingly getting lost in asynchronousity. Flash shows no runtime errors in these situations. So here’s the basic idea of how we are doing things.

We have a base class that we extend for most classes that load swfs. It looks something like:

public function base(path:string, parent:sprite, callback:function)
{
    //this is the child swf path
    _path = path;

    //parent is the sprtie we want to render the child onto
    if(parent != null) doLoad(parent, callback)
}

public function doLoad(parent, callback)
{
    var mLoader:Loader = new Loader();
var mRequest:URLRequest = new URLRequest(_path);

    //onLoaded is overridden in the child. The override first calls the parent onLoad.
mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaded);

    mLoader.load(mRequest);
}

//this is called from the load complete from above. This is done before the 
//child onloaded is done
protected function onLoaded(loadEvent:Event):void
{
    _loadedTarget = loadEvent.currentTarget;
    _canvas = _loadedTarget.content;
    _parentSprite.addChild(_canvas);
}

Now, most of our classes which need to show a Swf extend this class. They look like this

public class child extends base
{    

public function child(parent:Sprite, callback)
{
     //call base constructor
     super("some/path/to/swf", parent, callback);
}

protected override function onLoaded(loadEvent:Event):void
{

     super.onLoaded(loadEvent);
     ....
}

This is the basic scheme. If I try to create a bunch of instances of ‘child’ WITHOUT waiting for the onLoaded function to finish on the previous ‘child’, random instances simply won’t show up. I wrote the above code very quickly, it is not compy/paste, so ignore simple errors. Are there any glaring reasons why the above method does not work?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T10:14:48+00:00Added an answer on May 13, 2026 at 10:14 am

    Could it be because you’re declaring your swf loader in local scope? It’s most likely falling out of scope and being garbage collected before it has a chance to load.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say i have this block of code, <div id=id1> This is some text
Let's say I have a text file composed like this ##### typeofthread1 ##### typeofthread2
Let's say I have this code: <p dataname=description> Hello this is a description. <a
Let's say I have table with column 'URL' whrere I store urls like this
Let say I have some code HTML code: <ul> <li> <h1>Title 1</h1> <p>Text 1</p>
Let's say that I have a set of relations that looks like this: relations
Let's say I dynamically create a timer like this: System.Timers.Timer expirationTimer = new Timer(expiration
Let's say on a page I have alot of this repeated: <div class=entry> <h4>Magic:</h4>
Let's say I can call a method like this: core::get() . What is the
Let's say there is a graph and some set of functions like: create-node ::

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.