Hello
I have a problem that I don’t know how to solve.
I’m trying to load an image from the same folder as my .swf.
And it throws me an 2036 error. The image is there but doesn’t load.
But if I change the urlrequest to a random image on the web it loads perfect.
var l:Loader = new Loader();
l.load(new URLRequest("swedish.png"));
Throws 2036
var l:Loader = new Loader();
l.load(new URLRequest("http://cdn2.iconfinder.com/data/icons/flags/flags/24/Sweden.pngg"));
Works like a charm.
Does anyone have an idea why?
Thanks for any help
/Martin