hey there im trying to control sound but its being a pain, basically i have a movie clip and i want it to play a sound when you rollover it, but when you rollout the animation rewinds, im trying to make the sound not play when it rewinds, here is my code
this.onEnterFrame = function(){
if(rewind == true){
whoosh.setVolume(0)
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
whoosh.setVolume(0)
}