Steven Pena Report post Posted July 3, 2007 (edited) Is it possible to surface the printChart function of the Chart class to Javascript via the ExternalInterface? This would allow us to present an alternative interface to print from (link, button...) outside of the chart. It's not very intuitive to ask the user to right-click and then select print, to print a chart. And as you have noted in several posts - you aren't responsible for browser printing (which isn't reliable across browsers). You should only need to add this line to the Chart constructor: /** * expose printChart function to Javascript */ flash.external.ExternalInterface.addCallback("PrintChart", this, printChart); Thanks, Steven Edited July 4, 2007 by Guest Share this post Link to post Share on other sites
Pallav Report post Posted July 4, 2007 You can do this - by modifying the source code of chart. Share this post Link to post Share on other sites