home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / sleepless-knight.swf / scripts / DefineSprite_287 / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-11  |  251 b   |  12 lines

  1. function onEnterFrame()
  2. {
  3.    _rotation = _rotation + 10;
  4.    if(this.hitTest(_parent._parent.MAN))
  5.    {
  6.       _root.coins = _root.coins + 1;
  7.       _root.playSound("COIN",50);
  8.       this.swapDepths(9999);
  9.       this.removeMovieClip();
  10.    }
  11. }
  12.