home *** CD-ROM | disk | FTP | other *** search
/ Champak 48 / cdrom_image.iso / Games / alex_trax.swf / scripts / DefineSprite_329 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  253 b   |  13 lines

  1. if(!inited)
  2. {
  3.    inited = true;
  4.    xOff = _X;
  5.    yOff = _Y;
  6.    v = (Math.random() + 1) * 0.003;
  7.    dx = (Math.random() + 1) * 10;
  8.    this.onEnterFrame = function()
  9.    {
  10.       this._x = this.xOff + Math.sin(getTimer() * this.v) * dx;
  11.    };
  12. }
  13.