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 651817
In Process

The Archive Base Latest Questions

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

I am attempting to load multiple images in AS3 and I’m exploring different options

  • 0

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, onLoadComplete);

whichButton = 0;
buttonLdr.load(new URLRequest("images/test.png"));

whichButton = 1;
buttonLdr.load(new URLRequest("images/testDown.png"));

whichButton = 2;
buttonLdr.load(new URLRequest("images/testHover.png"));

private function onLoadComplete(e:Event):void
{
    switch(whichButton)
    {
        case 0:
            buttonBgUp = e.target.loader.content;
            break;
        case 1:
            buttonBgDown = e.target.loader.content;
            break;
        case 2:
            buttonBgHover = e.target.loader.content;
            break;
    }
    create();
}

A pretty straightforward approach… although it only calls the function on the last call, setting the buttonBgHover, but nothing else.

Any guidance to what might be going on here would be greatly appreciated.

-thanks

  • 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-13T22:12:14+00:00Added an answer on May 13, 2026 at 10:12 pm

    You need to call next load only when previous load completes.

    whichButton = 0;
    buttonLdr.load(new URLRequest("images/test.png"));
    private function onLoadComplete(e:Event):void
    {
    switch(whichButton)
    {
        case 0:
             buttonBgUp = e.target.loader.content;
            whichButton = 1;
            buttonLdr.load(new URLRequest("images/testDown.png"));
            break;
        case 1:
             buttonBgDown = e.target.loader.content;
            whichButton = 2;
            buttonLdr.load(new URLRequest("images/testHover.png"));
            break;
        case 2:
            buttonBgHover = e.target.loader.content;             
            break;
    }
    create();
    

    }

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

Sidebar

Related Questions

Im attempting to load a hex literal from an xml settings file, I can
I'm attempting to load a bitmap image from an images folder from within the
I'm attempting to load a dll into MSSQL with: USE dbname GO CREATE ASSEMBLY
I'm attempting to use Mono to load a bitmap and print it on Linux
Attempting to print out a list of values from 2 different variables that are
When attempting to call functions in math.h , I'm getting link errors like the
I would like to be able to click a button on a flash menu,
I have an ASP.NET page that needs to make calls to multiple web services
I'm attempting to load test a WCF service with (IIS6/Server2003/BasicHttpBinding). The service is throttled
I am attempting to load from text files, queries into an MS Access Queries

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.