Roll Out from a Movie Clip Button

Hi,

I have a swf file which contains a movie clip button. The problem I have is that because the button covers the entire surface area of the stage size, there is no where for the mouse to roll off. Here is the code I am using…

Any suggestions?

btn.onRollOver = over;
btn.onRollOut = out;
btn.onRelease = goBtn;

function over():Void {
this.over = true;
this.play();
}
function out():Void {
this.over = false;
this.play();
}
function goBtn() {
container.loadMovie(“ten31Ryan.swf”);
}