Skip to content

Instantly share code, notes, and snippets.

@peterblazejewicz
Created May 13, 2011 08:55
Show Gist options
  • Save peterblazejewicz/970224 to your computer and use it in GitHub Desktop.
Save peterblazejewicz/970224 to your computer and use it in GitHub Desktop.
printing from embedded browser instance on Win/Mac
protected function printHandler(event:MouseEvent):void
{
if(browser)
{
if(flash.system.Capabilities.os.toLowerCase().substr(0, 1) == "w")
{
browser.print();
} else
{
browser.goto("javascript:window.print();");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment