I'm currently developing a game using AIR. I'm using Flash Builder 4.5.
I tried loading swf and static images using the Loader class but when exported and put on an iPod none of these images showed. I changed it to something like this:
Code:
[Embed(source="images/bomb.swf")]
private var bombClass:Class;
private var bomb:Sprite=new bombClass;
which works for static images (.jpg or .png) but the .swf still do not show.
Also it should be noted that these all show in the emulator and on Android. It is only on the iPod that they don't show up.
Any ideas?