콜백함수를 이용한 마우스 따라오기 작성자 정보 작성자 김두호 작성일 1970.01.01 09:00 컨텐츠 정보 조회 128 목록 게시물 옵션 글수정 글삭제 본문 Instance Name : snake _root.onLoad=function() { this.snake.targetx=snake._x; this.snake.targety=snake._y; } _root.snake.onMouseUp=function() { this.targetx=_root._xmouse; this.targety=_root._ymouse; } _root.snake.onEnterFrame=function() { this._x += 0.3*(this.targetx-this._x); this._y += 0.3*(this.targety-this._y); } 관련자료 링크 07/mousemove.fla 26 회 연결 댓글 0개 등록된 댓글이 없습니다. 로그인한 회원만 댓글 등록이 가능합니다. 목록 게시물 옵션 글수정 글삭제