AlivePDF printing without server side

Hi,

I am using AlivePDF to generate/save pdf on local machine which is working fine.



var savePDF:PDF;
var bytes:ByteArray;
var f:FileReference = new FileReference();

savePDF = new PDF (Orientation.PORTRAIT, Unit.POINT, Size.LETTER);

for (var i:int = 0; i <numPages; i++) {
    //add all pages
}

bytes = savePDF.save( Method.LOCAL);
f.save(bytes, "abc.pdf");

I am looking for a solution through which I can print the pdf without using any server side technology.

Any help is appreciated.