Hey Colt
Thought I'd have a crack at this one.
I have not tested the code below, but this is how I would personally go about it.
I'd place a text box on the stage ("txt_pageNo") for the user to input a page number.
I'd also place a button next to it ("btn_gotoPage") so the user can execute the goto page function.
This function takes the user's input and converts it to an integer, which in turn is sent to the method gotoPage that belongs to the MegaZine class.
This should get the page to turn to the user's choice.
function btnPress_gotoPage(event:MouseEvent):void
{
//Get user input from text box on stage and convert to an integer
var pageNo = int(txt_pageNo.text);
//Call gotoPage Method on the MegaZine class
_mz.gotoPage(pageNo, false);
}
btn_gotoPage.addEventListener(MouseEvent.CLICK, btnPress_gotoPage);
I have not included any form validation or error catching in this button script but would suggest you do so to stop users inputting invalid values like letters.
Let us know how you get on with this.
Cheers
Jay