Rollout not registering when exiting swf boundary

Hi everyone,

I have created a flash navigation that needs to be placed in an html site. I used movieclips to create a smooth rollover/rollout effect. The problem is when the cursor exits the boundary of the .swf file, and into the html area, the rollout effect doesn’t happen. It remains stuck on the rollover position.

The code I used to trigger the action is:

onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.nextFrame();
} else {
this.prevFrame();
}
}

Is there any way to correct this so when the cursor exits the boundary of the .swf file, the rollout effect still happens.

Thanks for any help!

Ryan