how to make life movie clip using actionscript 2.0

133 Views Asked by At

I am using an ActionScript 2.0 for my project. I have a movie clip that is moving along the x-axis. My problem is, if that movie clip reaches the given boundary, it should automatically deduct one life. My codes doesn't work.

Here's my code for the timeline:

var life:Number = 5;
lives = 3;
boundary = 280; 

var speed:Number = 1;
var boundary:Number = 280;


this.onEnterFrame = function():Void {
    if (clip._x > boundary) {
        clip._x -= speed;
    } else {
        clip._x = boundary;
        delete this.onEnterFrame; 
    }
}
if(lives == 0){
 gotoandstop(132);
}

Here's my code for moving mc:

onClipEvent (load) {
    speed = 1;
    boundary = 280;  
}
onClipEvent (enterFrame) {
    if (this._x > boundary) {
        this._x -= speed;  
    } 
 else {
        this._x = boundary;
        this._visible = false;
  life -= 1;
        lifebox.text = life.toString();
    }
}

2

There are 2 best solutions below

2
On BEST ANSWER

First, you don't need to have a code for the timeline and a code for your movie clip.

On the other hand, if you want your movie clip to disappear, you should remove it or put it elsewhere, because the hitTest will run continuously.

Main timeline code

var lifes:Number = 5;
var speed:Number = 1;
var boundary:Number = 280;
var startX:Number = 320;
clip._x = startX;

this.onEnterFrame = function():Void {
    if (clip._x > boundary) {
        clip._x -= speed;
    } else {
        lifes--;
        clip._x = startX;
        if (lifes == 0) {
            gotoAndStop(132);
            delete this.onEnterFrame;
        }
    }
}
2
On

Main timelines code is ok.

The mistake was in referencing. Here is corrected MovieClip code.

onClipEvent (load) {
    speed = 1;
    boundary = 280;  
}
onClipEvent (enterFrame) {
    if (this._x > boundary) {
        this._x -= speed;  
    } 
 else {
        this._x = boundary;
        this._visible = false;
// use parent to refer variables and textfields declared, level up (in this case to main timeline);
_parent.life -= 1;
_parent.lifebox.text = _parent.life;
    }
}