Question
My javascript doesnt work on big files
I have a very basic javascript that asks for a pagenumber and a name. Then it extracts that pagenumber from the document and names it. It works fine on small documents but when I use it on big document (12mb) it doesnt work.
var page = app.response("which page do u want to extract?")
var name = "../" + app.response("what do u want to name it to?") + ".pdf"
this.extractPages(page-1,page-1,name)
