Добрый день.
Я рисую линии вот таким способом:

Код:
count=0;
draw_.onMouseDown = function () {
count++;
detect = 1;
startX = this._xmouse;
startY = this._ymouse;
};
draw_.onMouseMove = function () {
if (detect == 1) {
this.createEmptyMovieClip("line"+count, count);
var line = this["line"+count];
line.lineStyle(5, this.myColor, 100);
line.dashTo(startX, startY, this._xmouse, this._ymouse, 4, 6);
updateAfterEvent();
}
};
draw_.onMouseUp = function () {
var lineArray:Array = new Array();
lineArray["line"+count] = this["line"+count];
detect = 0;
};
Теперь надо их сохранить и отправить на сервер, чтобы можно было их принять в другом мувике.
Вот только пока не знаю как лучше(точнее правильней это сделать).
Может кто нибудь поделится знаниями?