I have a Flex app that needs to adjust its layout before a printout is useful. This is not a problem when a user clicks the print button I have in my app. In this case I just call my doPrint() function which creates a FlexPrintJob, adjusts the layout as necessary, and then calls FlexPrintJob.send().
But if the user tries to print from the browser, (i.e. File-->Print), is there any way to intercept that call and pass the print request through my doPrint() function? The browser rendered version of the printout is pretty useless. Thanks, Jesse

