flex - How to merge pdfs(Alive PDF) in flex3? -
my flex application generates individual pdf documents based on individual selection criterion,but need merge generated pdfs or possible store individual pdfs temporarily merge single pdf?
small logic, call save() method of pdf object after mypdf.addgrid() methods, saved in 1 pdf file generated
var mypdf:pdf = new pdf(orientation.portrait, unit.mm, size.a4); for(each array ) { var grid:grid = new grid(...); grid.columns = pdfgridcolumn; mypdf.addgrid(grid) } finally call mypdf.save();
Comments
Post a Comment