Hi Guys, I’m seraching a code that allows me to do something like that :
jesaispasdessiner
There’s a filed where you can draw and save your drawing.
to Draw, here is the code I want to use :
_root.createEmptyMovieClip("lestylo",1);
_root.onMouseDown = function(){
lestylo.moveTo(_xmouse,_ymouse);
lestylo.lineStyle(2,0x00CCFF,100);
this.onEnterFrame = function(){
lestylo.lineTo(_xmouse,_ymouse);
}
}
_root.onMouseUp = function(){
this.onEnterFrame = null;
}
Now I’d like to :
- either save the mouse’ movement, redrawing the picture
- or only save the final image
Could someone give me a source for that ?
Do you know how to do this ?
thanks !!! C:-)