home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / midnightstrike1.swf / scripts / DefineSprite_897 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-04-02  |  309 b   |  14 lines

  1. this.onEnterFrame = function()
  2. {
  3.    this.frame = com.neodelight.std.XMath.toNumber(this.frame);
  4.    if(this.traceFrames)
  5.    {
  6.       trace("(---" + this.frame + "@" + getTimer() + "----)");
  7.    }
  8.    else if(Key.isDown(36))
  9.    {
  10.       this.traceFrames = true;
  11.    }
  12.    this.frame = this.frame + 1;
  13. };
  14.