[flash8] Actionscript conflict - Links inside movie Clip disabled?

Hello,

Long time visitor, first-time poster.

I have an issue in an animation using the advanced button animation tutorial from kirupa.com, in that, I have a little window popup at the end of the animation with some links in it. So,

The code that handles the animation on the movie clip (used as a button) is:

stop();

this.onEnterFrame = function(){

if(rewind == true){

prevFrame();

}

}

this.onRollOver = function(){

rewind = false;
play();

}

this.onRollOut = function(){

rewind = true;

}

And in turn, I have static text inside that movie clip with the “Link” in the property inspector with a URL in it, however, these are not working.

I have read that it is in relation to the functions for the movie clip - how do I overcome this issue?

Thanks,
Ian