Hi. I have a button in an itemRenderer that references a function like this,
<mx:Button id="btnBrowse" label="Browse" click="outerDocument.doBrowse( event )"/> Everything worked fine until I moved this itemRenderer into its own MXML file as a VBox component. It gives an error: "Access of undefined property outerDocument." How do you reference a function in the original MXML page from an itemRenderer's MXML? Thanks.

