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

Popular posts from this blog

how to build hyperlink for query string in php -

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

queue - mq_receive: message too long -