How to Use Acrobat SDK for Automation Using VB or Perl
hi forum,
i new bie, 2 days old acrobat , javascript, , perl developer
i using adobe acrobat 9 pro,
i downloaded acrobat sdk, don't know else further, how use??
i tried start learning sdk, no proper documents found learn , start using sdk,
please suggest guide or documentation start learning acrobat sdk (step step guide)
here have created small script merge 2 pdf
// create new pdf document:
var newdoc = app.newdoc();
// insert doc1.pdf:
newdoc.insertpages({
npage : -1,
cpath : "/d/sathish/1.pdf",
});
// insert doc2.pdf:
newdoc.insertpages({
npage : newdoc.numpages-1,
cpath : "/d/sathish/2.pdf",
});
// save new document:
newdoc.saveas("/d/sathish/mynewdoc.pdf");
my code working fine , merging properly,
is there way execute script through commandline or using other scripting languages perl or through vb
my objective automate merging process without manual intervention, don't want open acrobat manually execute javacript, want automate process too,
please suggest me helpful me,
thanks in advance
thanks & regards
sathish v.
it big sdk , learn features requires lot of reading. start guess should start "introduction sdk".
since want control acrobat application should consider under "interapplication communication". using ole/com.
More discussions in Acrobat SDK
adobe
Comments
Post a Comment