home *** CD-ROM | disk | FTP | other *** search
- A = new Array();
- this._x = _root.Device._x + 90;
- this._y = _root.Device._y;
- stop();
- this.onEnterFrame = function()
- {
- Speed++;
- this._x += Speed;
- _root.attachMovie("MissileSmokeID","MissileSmoke" + MovD,MovD);
- A[MovD] = _root["MissileSmoke" + MovD];
- A[MovD]._x = this._x;
- A[MovD]._y = this._y;
- MovD++;
- if(MovD >= 99)
- {
- MovD = 0;
- }
- if(this._x >= 660)
- {
- _root.NextShot = true;
- this.unloadMovie();
- }
- };
-