I am using Ely' SuperImage with the preload to cache feature.
I am having some through with loading one set of images to the cache
and not having much luck trapping the error.
The following try/catch is totally ignored - what am I doing wrong ?
here's a snippet
----------------------------------------------------------
trace(" not in cache or inaccessible: creating new Loader");
loader = new Loader();
try{
loader.load(request);
}
catch(e:Error)
{
trace("loadResult="+e)
}
cachedItems.push(loader);
result = loader
-------------------------------------------------------------