Well what I want to happen, is when the alpha of an object hits 0, to gotoAndStop on a different frame. This is the code I have that isn’t working.
onClipEvent(enterFrame){
if(this._alpha<=0){
gotoAndStop(5)
}
}
What do I need to change this to?