I\'m having an app where the user can edit a simple greeting card and should be able to send it to another user. We are currently doing it by exporting to a graphic file an
Deep copy the MovieClip object to a ByteArray and dump it to a file.
var buffer:ByteArray = new ByteArray(); buffer.writeObject(MOVIE_CLIP_HERE); buffer.position = 0; buffer.writeBytes(...);