How do I share resources between two Android Air Applications
I have two air applications installed on Android 2.2. What I want to do is load App2.swf into a movieclip in App1.swf.
Is this possible?
If I include App2.swf in the APK all works fine. But what I want to do is either load it from a second application folder or from /sdcard/dropbox/App2.swf
My load command var mRequest:URLRequest = new URLRequest("file://sdcard/dropbox/App2.swf"); // But it doesn't work !!!