Button nested inside 2 movieclips not working

I have a button that is inside a movieclip, which is in turn inside another movieclip. It seems that my event listener is not firing when the button is clicked. I set up the listener:

MovieClip2.MovieClip1.ButtonInsideMovieClip1.addEventListener(MouseEvent.MOUSE_UP, functionToRun);

Unfortunately when I click on the button, the function is not executed. Does AS3 not allow this type of nesting?
Any help is appreciated.