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

  • SEARCH
  • Home
  • 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 433145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T20:08:41+00:00 2026-05-12T20:08:41+00:00

in AS3, I have an external class ImageLoader, that loads an image upon request.

  • 0

in AS3, I have an external class ImageLoader, that loads an image upon request. In that class, I have an event handlers:

ImageLoader Class

public function loadImg(path:String):void
{
 ldr = new Loader();
 ldr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, getProgress);
 var req:URLRequest = new URLRequest(path);
 ldr.load(req);
}

private function getProgress(e:Event):void
{
 dispatchEvent(new Event("PROGRESS_INFO"));
}

I am trying to send the download progress updates back to the main Document Class and display it on screen, so I am trying to dispatch the event “PROGRESS_INFO” and then get the information from the passed Event Object, like so:

Document Class

private function getProgressInfo(e:Event):void
{
 trace(e.target.bytesTotal);
}

This however, is proving futile… any ideas on how I can get the progress info out of the IMageLoader class?

note: I know I can add bytesLoaded & bytesTotal to a public variable, but then I won’t get the benefit of seeing the bytesLoaded property update in the ProgressEvent class. Any ideas?

  • 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-12T20:08:41+00:00Added an answer on May 12, 2026 at 8:08 pm

    Make sure your ImageLoader class extends the EventDispatcher class. Also, instead of creating a new event, you should re-dispatch the ProgressEvent.

    private function getProgress(e:ProgressEvent):void
    {
     dispatchEvent(e);
    }
    

    This should work in the document class:

    myImageLoader = new ImageLoader();
    myImageLoader.addEventListener(ProgressEvent.PROGRESS, getProgressInfo);
    
    private function getProgressInfo(e:ProgressEvent):void
    {
     trace(e);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Flash AS3 project that loads external SWFs and controls them in
I have an AS3 class with some getVideo function. I want to use this
I have a menu that is built using its own AS3 class, when a
I have external swf (ext.swf) that is loaded in my FlashDevelop as3 project. When
I have an AS3 program that calls a function multiple times. The function must
I have an as3 class that I use for communicating with my Zend_AMF endpoint:
I have an AS3 App class e.g (pseudo code) public class MyApp extends Application
Okay getting some weirdness. I have a simple URLLoader in AS3 that loads an
(Flash Professional / AS3) I have a main fla file that loads a game
I have a AS3 swf [1] that is loading another AS2 swf [2] which

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.