Draw i movieclip
Hej.Jeg bruger følgende kode til at draw'e på min tomme stage:
-------------------------------------
_root.Tykkelse = new Number(5)
_root.Farve = "0x000000"
onMouseDown = function() {
draw = 1;
start_line_x = this._xmouse;
start_line_y = this._ymouse;
}
onMouseUp = function() {
draw = 0;
}
onMouseMove = function() {
if (draw) {
lineStyle (_root.Tykkelse, _root.Farve, 100);
moveTo (start_line_x, start_line_y);
lineTo (this._xmouse, this._ymouse);
start_line_x = this._xmouse;
start_line_y = this._ymouse;
}
}
-------------------------------------
Men hvad nu hvis jeg vil draw'e på et movieclip i stedet for? hvordan gør man så?