home *** CD-ROM | disk | FTP | other *** search
- var f = 0;
- if(this._yscale < 100)
- {
- this._yscale += 10;
- f = 1;
- }
- else if(this._yscale > 100)
- {
- this._yscale = 100;
- }
- if(!f)
- {
- if(whirl._xscale < 100)
- {
- whirl._xscale += 5;
- whirl._yscale += 5;
- f = 1;
- }
- else if(whirl._xscale > 100)
- {
- whirl._xscale = 100;
- whirl._yscale = 100;
- }
- }
- if(f)
- {
- prevFrame();
- play();
- }
-