home *** CD-ROM | disk | FTP | other *** search
/ One Click 5 / ONCE005.iso / Jogos / maplestory.swf / scripts / frame_147 / DoAction.as
Encoding:
Text File  |  2006-03-21  |  269 b   |  16 lines

  1. cursor.stop();
  2. cursor.onEnterFrame = function()
  3. {
  4.    this._x = _root._xmouse;
  5.    this._y = _root._ymouse;
  6. };
  7. cursor.onMouseDown = function()
  8. {
  9.    this.gotoAndStop("click");
  10.    trace("click");
  11. };
  12. cursor.onMouseUp = function()
  13. {
  14.    this.gotoAndStop(1);
  15. };
  16.