i'm trying to export the content of DataGrid into PDF
var bytes:ByteArray = myPDF.save(Method.LOCAL);
var f:FileReference = new FileReference();
f.save(bytes,"TestAttachment.pdf");
/* Call to a possibly undefined method save through a reference with static type flash.net:FileReference. */
i'm using AlivePDF version 0.1.4.9 and flex builder 3 for building a simple Flex Application
I think this problem is caused by build settings.
In Flex Builder > Project > Properties > Flex Compiler, set the minimum Flash Player version to over 10.0.0.
After that, you can use FileReference.save() method.
Maybe your setting was 9.x.x