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 lo