home *** CD-ROM | disk | FTP | other *** search
/ Architecture: Form, Space & Order (3rd Edition) / Architecture.iso / swfs / m4_s1.swf / scripts / DefineSprite_8 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-05-03  |  286 b   |  12 lines

  1. stop();
  2. onEnterFrame = function()
  3. {
  4.    framesLoaded = Math.ceil(_parent.getBytesLoaded() / _parent.getBytesTotal() * 100);
  5.    gotoAndStop(framesLoaded);
  6.    info_txt.text = framesLoaded + "% completed";
  7.    if(framesLoaded >= 90)
  8.    {
  9.       _root.gotoAndPlay("Start");
  10.    }
  11. };
  12.