home *** CD-ROM | disk | FTP | other *** search
- if(refresh eq "false")
- {
- cnt += 1;
- if(cnt < 10)
- {
- tg2._rotation -= 5;
- tg2._alpha += 10;
- tg2._xscale -= 10;
- tg2._yscale -= 10;
- gotoAndPlay(_currentframe - 1);
- }
- else if(cnt < 40)
- {
- tg2._rotation -= 5;
- gotoAndPlay(_currentframe - 1);
- }
- else if(cnt < 50)
- {
- tg2._rotation -= 5;
- tg2._alpha -= 10;
- tg2._xscale += 10;
- tg2._yscale += 10;
- gotoAndPlay(_currentframe - 1);
- }
- else
- {
- gotoAndStop(1);
- }
- }
- else
- {
- gotoAndPlay(2);
- }
-