Jump to content
Search Community

afriendcalledben

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by afriendcalledben

  1. Since I've updated my AIR runtime to 27.0.0.124, I'm experiencing a crash in any project that uses ImageLoader / LoaderMax to load images from the local file system. This is a brand new issue that has just started today and is consistent with all my previous projects.

     

    The code is:

    var queue:LoaderMax = new LoaderMax( { onComplete:onBitmapsLoaded, onError:onBitmapsError } );
    for (var i:int = 0; i < _imagesToLoad.length; i++) {
        queue.append(new ImageLoader(_imagesToLoad[i].path, {name:_imagesToLoad[i].id}));
    }
    queue.load();

     

    At the point of calling LoaderMax to load, the application crashes with the following report:

     

    Log Name:      Application
    Source:        Application Error
    Date:          27/09/2017 14:30:50
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      DESKTOP-L18EOIN
    Description:
    Faulting application name: adl.exe, version: 26.0.0.118, time stamp: 0x592be5a1
    Faulting module name: SS2DevProps.dll, version: 0.0.0.0, time stamp: 0x58873503
    Exception code: 0xc0000005
    Fault offset: 0x00009522
    Faulting process ID: 0x2534
    Faulting application start time: 0x01d33794d41287f9
    Faulting application path: C:\Users\ben\AppData\Local\FlashDevelop\Apps\flexairsdk\4.6.0+26.0.0\bin\adl.exe
    Faulting module path: C:\Program Files\ASUSTeK COMPUTER INC\SS2\UserInterface\SS2DevProps.dll
    Report ID: c4b45f2f-183b-470f-95df-1a1a28134578
    Faulting package full name: 
    Faulting package-relative application ID: 
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2017-09-27T13:30:50.246338200Z" />
        <EventRecordID>6764</EventRecordID>
        <Channel>Application</Channel>
        <Computer>DESKTOP-L18EOIN</Computer>
        <Security />
      </System>
      <EventData>
        <Data>adl.exe</Data>
        <Data>26.0.0.118</Data>
        <Data>592be5a1</Data>
        <Data>SS2DevProps.dll</Data>
        <Data>0.0.0.0</Data>
        <Data>58873503</Data>
        <Data>c0000005</Data>
        <Data>00009522</Data>
        <Data>2534</Data>
        <Data>01d33794d41287f9</Data>
        <Data>C:\Users\ben\AppData\Local\FlashDevelop\Apps\flexairsdk\4.6.0+26.0.0\bin\adl.exe</Data>
        <Data>C:\Program Files\ASUSTeK COMPUTER INC\SS2\UserInterface\SS2DevProps.dll</Data>
        <Data>c4b45f2f-183b-470f-95df-1a1a28134578</Data>
        <Data>
        </Data>
        <Data>
        </Data>
      </EventData>
    </Event>

    Is this just my local system? I've redownloaded and replaced the .SWC component but the problem remains.

     

    Thanks,

     

    Ben

     

×
×
  • Create New...