home *** CD-ROM | disk | FTP | other *** search
/ Samsung New PC Studio / Samsung_new_Pc_studio.iso / Experience / Pt_br / timeline.swf / scripts / frame_1 / DoAction.as
Text File  |  2007-09-20  |  300b  |  19 lines

  1. stop();
  2. Stage.scaleMode = "noScale";
  3. Stage.align = "tl";
  4. var dir = "Experience\\Pt_br\\";
  5. chk = 0;
  6. this.onEnterFrame = function()
  7. {
  8.    chk++;
  9.    if(chk < 10)
  10.    {
  11.       _root.fPath = _root.gPath + dir;
  12.    }
  13.    else
  14.    {
  15.       gotoAndPlay(2);
  16.       delete this.onEnterFrame;
  17.    }
  18. };
  19.