Answered
Placing stamps with JavaScript
Hi again,
In JavaScript I want to select a stamp and add it to the PDF (works fine so far):
this.addAnnot({
type: "Stamp",
page: 0,
rect: [36, 72, 288, 144],
AP: "#DApproved"
});
The stamp is now placed to the exact position and size defined in the code.
Now I want to allow the user to place the stamp where ever he wants. (like when you select a stamp from the stamp toolbar)
How should I proceede?
