Skip to main content
Participant
February 8, 2018
Answered

Comment Icon Very Small on Imported Pictures

  • February 8, 2018
  • 1 reply
  • 640 views

I imported a number of pictures into a PDF and want to create comments for my colleagues to read. When placing a comment, the comment icon isn't visible unless I zoom in. My current zoom is set to 11.3% for the image to fit to screen. I'm guessing the issue is due to the image just being too large, but I'm not sure how to re-size it (I don't have photoshop).

This topic has been closed for replies.
Correct answer Document Geek

Try this: Document Geek: Are Your Sticky Note Icons Too Small? Make them Bigger!

This scripting goodness is courtesy of Try67, Acrobat scripter extraordinaire.

Select your sticky note, open the JS console (Ctrl+J), enter this code, select it and press Ctrl+Enter:

var r = selectedAnnots[0].rect;

r[2] += r[2]-r[0];

r[3] += r[3]-r[1];

selectedAnnots[0].setProps({rect: r})

1 reply

Document Geek
Community Expert
Document GeekCommunity ExpertCorrect answer
Community Expert
February 8, 2018

Try this: Document Geek: Are Your Sticky Note Icons Too Small? Make them Bigger!

This scripting goodness is courtesy of Try67, Acrobat scripter extraordinaire.

Select your sticky note, open the JS console (Ctrl+J), enter this code, select it and press Ctrl+Enter:

var r = selectedAnnots[0].rect;

r[2] += r[2]-r[0];

r[3] += r[3]-r[1];

selectedAnnots[0].setProps({rect: r})

Participant
February 16, 2018

Will this just make it bigger on my laptop? Or is the scripting embedded into the file?

try67
Community Expert
Community Expert
February 16, 2018

It will change the actual size of the comment in the file, not just on your computer.