Automatic Stamp of Multiple PDF files
Hi Hello,
my appologies in advance for if the question is already posted. I am fresh new on the comunity and to javascript and adobe acrobat API.
am trying to automate a stamping process. I managed to find a line that, fundamentally does what i need, but some details need to be adjusted. i am working wiht this:
addAnnot({type:"Stamp",page:0,AP:"#MyCustomStamp1", rect:[100,400,100,100]});
addAnnot({type:"Stamp",page:0,AP:"#MyCustomStamp2", rect:[200,500,200,200]});
q1) How to control the placement of "MyCustomStamp": Insertion point, Size and Rotation?
q2) How to Rotate the Stamp if the PDF has rotated pages (note that these PDfs come as they come), so the script needs to be smart enough to orient the Stamp in the right position all the time.
q3) what would be adequate syntax to write if i need the script to place more than one Stamp, example?
In VBA it would be somthing like
Sub MyMacro()
...mycode..
End Sub
but am not sure if the same apply here.
many thanks in Advance
