home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / run-soldier-run.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-11  |  354 b   |  16 lines

  1. stop();
  2. var MENU = new ContextMenu();
  3. MENU.hideBuiltInItems();
  4. MENU.builtInItems.quality = true;
  5. _root.menu = MENU;
  6. _root.onEnterFrame = function()
  7. {
  8.    var _loc2_ = Math.floor(_root.getBytesLoaded() / _root.getBytesTotal() * 100);
  9.    loading.text = _loc2_;
  10.    if(_loc2_ == 100)
  11.    {
  12.       play();
  13.       _root.onEnterFrame = null;
  14.    }
  15. };
  16.