home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / snowball.swf / scripts / DefineSprite_174 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  209 b   |  13 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.startmoving == 1)
  4.    {
  5.       this._y -= _root.snowball.yspeed;
  6.       if(_Y < -10)
  7.       {
  8.          _Y = 420;
  9.          _X = random(600);
  10.       }
  11.    }
  12. };
  13.