I can't make that paradigm shift into understanding how to gain control over a movie clip so it only plays once 'onPress'.
Basically, I have a movieclip that has an onRollover, onRollOut, and onRelease -- simple, but I want the Release to; 1) disable the RollOver and RollOut until the "release" has finished, then 2) disable the onRelease function once "release" has finished -- I have it like so, but I'm obviously doing variables incorrectly because the RollOver and RollOver don't reset after "release" finishes:
Code:
var bcB = 0;
var bcBB =0;
this.onRollOver = function (){
if(bcBB==0){
gotoAndPlay ("over");}
}
this.onRollOut = function (){
if(bcBB==0){
gotoAndPlay ("out");}
}
this.onRelease = function (){
if(bcB==0){
_root.bcBB=1;
gotoAndPlay ("release");}
}