一个简单的线条跟随

      Flash 2004-10-17 22:4


复制到第一帧即可
Mouse.hide();
oldx = _xmouse;
oldy = _ymouse;
onMouseMove = function () {
	updateAfterEvent ();
	lineStyle (1, 0xffffff, 50);
	moveTo (oldx, oldy);
	lineTo (_xmouse, _ymouse);
	oldx = _xmouse;
	oldy = _ymouse;
};
setInterval (function() {clear ();}, 50);
标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}