作者afu70 ()
看板Flash
标题Re: [问题] 请问如何用flash做简单的绘图板?
时间Mon Jun 4 17:03:15 2007
之前有做过比较简易版的
参考看看
this.onMouseDown = function() {
this.createEmptyMovieClip("_mc", _root.getNextHighestDepth());
_mc.lineStyle(0, 0x000066);
_mc.moveTo(_xmouse, _ymouse);
this.onMouseMove = function() {
_mc.lineTo(_xmouse, _ymouse);
};
};
this.onMouseUp = function() {
delete this.onMouseMove;
};
贴在影格1
※ 引述《heipo (小白)》之铭言:
: 就是可以用用滑鼠在上面写字的那种?
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 59.120.10.81