Does anyone here have experience with AlivePDF? I am using 0.1.4.9. in Flex (tried both 3.0 and 3.3) and nothing happens. I tried it with create.php, create.java, and looked into saving it with Flash Player 10 (but couldn't find any real documentation on how to make that work). I just get a blank new browser window. No error message, no anything.
I add the swc file to my library path, used the turotial sample code and still nothing happens: myPDF = new PDF(); var page:Page = new Page ( Orientation.PORTRAIT, Unit.MM, Size.A4 ); myPDF.addPage(page); myPDF.lineStyle(new RGBColor(0×990000), 1,1,1); myPDF.drawCircle(20,20,20); var path:String = getBaseURL() + "/terracotta/create.php"; myPDF.save(Method.REMOTE, path, Download.INLINE, "viewChart.pdf");