Hi,

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

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

savePDF = new PDF (Orientation.PORTRAITUnit.POINTSize.LETTER);

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

bytes savePDF.saveMethod.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.