How to permanently embed an external image file in FLA using actionscript (without any dependency on the original file in folder anymore - after actionscript is run)
I want to permanently embed an external image from my local folder in a .FLA file using actionscript. Using actionscript, currently I use the Loader and URLRequest to fetch the external file. Then add this image to a Existing empty MovieClip object. So the animation shows this image as movie clip correctly- as long as the external file exist in local folder. However, I want to remove this dependency on external file once the action script is run (as I am sharing this FLA file with multiple team members over email). And my FLA file should have the image as permanently part of the animation. Any idea on how to solve my problem?