Wow, what a thread brought back from the dead! 2004...
Anyway, now to answer MY question hah.
What I would do nowadays for things like this, when only dealing with a couple clips is to just do a stage wide onmouseup event and check for hittest. For example:
code:
this.onMouseUp=function () {
if (innerClip.hitTest(_root._xmouse,_root._ymouse) {
//do something;
}
else if (outerClip.hitTest(_root._xmouse,_root._ymouse) {
//do something else;
}
Hope that helps!
