Swfaddress rollover

Hi Guys,

I am using the swfaddress for AS2, and everything is ok but when animating rollovers, work on rollover, but the rollout seems to get stuck some times. This code is inside an MC, where the animation is housed in another MC “bt01”. Anyone else had this problem?

this.onRelease = function() {
    SWFAddress.setValue('about');
}
this.onRollOver = function() {
    SWFAddress.setStatus('about');
    _parent.bt01.gotoAndPlay("2");
}
this.onRollOut = function() {
    SWFAddress.resetStatus();
    _parent.bt01.gotoAndPlay("11");
}