making stick note icon larger
Some pdf's i open the sticky note is small small and some pdf allow the sticky note to be larger
Some pdf's i open the sticky note is small small and some pdf allow the sticky note to be larger
It is possible to change the size of the sticky notes icons on the page, but it requires using a script.
You can run this code from the JS Console to double the size of all the icons in your file. To do so copy the code, then go to Acrobat, press Ctrl+J to open the Console window, paste the code into it, select it all with the mouse and press Ctrl+Enter to run it. You can run it again to make it double the size once more, etc.
Unfortunately, this does not affect any sticky notes you add after running the script, but it is possible to assign a menu item to the code that will run it with a single click.
Here's the code:
this.syncAnnotScan();
var annots = this.getAnnots();
if (annots!=null) {
for (var i in annots) {
var annot = annots[i];
if (annot.type=="Text") {
var r = annot.rect;
var width = r[2]-r[0];
var height = r[3]-r[1];
r[2]+=width;
r[1]-=height;
annot.rect = r;
}
}
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.