hi
i draw many movieClip at runtime with as3 and i want to save the movieclips graphics
as string or xml data. how can i do that?
i use toString() method of graphics but i get an error
var s:MovieClip=new MovieClip();
s.graphics.beginFill(0);
s.graphics.drawCircle(0,0,20);
addChild(s);
trace(s.graphics.toString())
error:
1061: Call to a possibly undefined method toString through a reference with static type flash.display:Graphics.