home *** CD-ROM | disk | FTP | other *** search
- this.onEnterFrame = function()
- {
- if(touche._currentframe == 1)
- {
- if(!this.touche.vesso)
- {
- this.touche.createEmptyMovieClip("tirEnnemiClip",_global.tirEnnemiDepth);
- this.touche.createEmptyMovieClip("tirVaisseauClip",_global.tirVaisseauDepth);
- this.touche.attachMovie("VaisseauClip","vesso",_global.vaisseauDepth);
- this.touche.vesso._x = 50;
- this.touche.vesso._y = 50;
- }
- if(this.touche.vesso._x > 210)
- {
- this.touche.vesso._x = 210;
- }
- if(this.touche.vesso._y > 150)
- {
- this.touche.vesso._y = 150;
- }
- }
- if(touche._currentframe == 2)
- {
- if(this.touche.vesso)
- {
- this.touche.vesso.removeMovieClip();
- }
- }
- };
- stop();
-