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 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

Ask A Question

Stats

  • Questions 224k
  • Answers 224k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer According to Craig Stuntz, all functional languages use garbage collection,… May 13, 2026 at 12:51 am
  • Editorial Team
    Editorial Team added an answer select distinct CONSTRAINT_NAME from information_schema.TABLE_CONSTRAINTS where CONSTRAINT_SCHEMA = 'mysql' May 13, 2026 at 12:51 am
  • Editorial Team
    Editorial Team added an answer Boolean implication A implies B simply means "if A is… May 13, 2026 at 12:51 am

Related Questions

I'm currently experimenting with loading external SWF files from both an standard AS3 application,
Okay getting some weirdness. I have a simple URLLoader in AS3 that loads an
I have a Flash in AS3. I want to dynamically load code that performs
I have an Flash AS3 project that loads external SWFs and controls them in

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.