Answered
Items
Ok. So I thaught I had the problem solved... Useing this code
I got the one item to give the ammount of points I want and
dissapear.
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.dude)) {
_root.life += this.extralife;
this.extralife = 0;
this._visible = false
}
}
Then I tried to put the code annother item. It would not give the points. I tried making a new symbol, new layer, new instance name all that. Still will not give the extra points. Any help?
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.dude)) {
_root.life += this.extralife;
this.extralife = 0;
this._visible = false
}
}
Then I tried to put the code annother item. It would not give the points. I tried making a new symbol, new layer, new instance name all that. Still will not give the extra points. Any help?