AS 3 | Cloning Png image data
问题 I need to clone .png image data loaded from server in AS3, so that I am not required to load same data again and again from server. After a search on cloning image data in AS3 I was able to find following code over internet clone = new Bitmap(Bitmap(this._loader.content).bitmapData.clone() ) By using this code I am able to clone bitmap data but the problem which I am facing is that my png background is transparent. If I typecast loaded png data to bitmap my icons background becomes white. Any