home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / redcarhi3.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-26  |  299 b   |  16 lines

  1. this.onEnterFrame = function()
  2. {
  3.    yuklenen = _root.getBytesLoaded();
  4.    filmboyutu = _root.getBytesTotal();
  5.    if(yuklenen == filmboyutu)
  6.    {
  7.       play();
  8.       delete onEnterFrame;
  9.    }
  10.    else
  11.    {
  12.       bar.gotoAndStop(Math.round(yuklenen / filmboyutu * 100));
  13.    }
  14. };
  15. stop();
  16.