sintax error with insert pages
Hello all,
I wanterd to insert pages from one file into a mainfile, and this should be after every third page of the document.
I created this js:
this.insertPages({cPath:"Mainfile.pdf"});
var start = 4;
var jump = 3;
for (var i=start; i<this.numPages; i=i+jump) {this.insertPages (i);i++({cPath:"Insertfile.pdf"})}
But every time I want to run it, I get the error :
syntax error: missing; before statement 4, in Zeile5.
But I can't see any syntax error (I am not so good with js).
Could you please help me? Thanks
Christian
