Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Annotation Opacity in Preview

Say I highlight a word using the annotation tool. The word get highlighted and everything looks perfect. So I save the file and exit Preview.

However, when I open the file using Acrobat Reader/Pro, the highlight looks very dull. I did figure a way to mannully recolor each annotation -- through chaning opacity in Acrobat Reader/Pro. But it is annoying before I use both applications extensively.


The following screen shot says everything. You will find the second line "confidence with ..." below the third highlights is also highlighted. I have not adjust its opacity.


User uploaded file


I found these disucssions decribing a similar problem:

https://discussions.apple.com/thread/2154399?answerId=10248425022#10248425022

https://discussions.apple.com/thread/3424085

MacBook Air, OS X Mavericks (10.9)

Posted on Nov 17, 2013 11:06 PM

Reply
15 replies

Nov 18, 2013 9:19 AM in response to ShannonLite

Hi!

I can confirm that. Thought, it was a messed up installation but clean install proofed me wrong.


One way to "correct" this is to -> export as PDF in preview.

After that, all highlighting shows up normal in the new version even in Acrobat until you change anything.


It is quite annoying though, because I work a lot with pdfs and I do not want to export them everytime I add an annotation and "saving" the file simply doesn't help at all.


Can you see a similar message in the console

revisiond[50]: failed to get generation counter on path...; error 16 (Resource busy)

?


I guess, they changed the way of handling versions and auto-save because I did not find a way to delete old versions and it seems, the file itself now grows a little everytime a change is being made.

At least those changes do not affect highlighting done with Mountain Lion.

Nov 25, 2013 11:31 AM in response to ShannonLite

The error message only appears in the console logs, right after opening the pdf and doing an annotation. It is not a pop-up or anything like that. Did you look there? If not, do you mind?


I have a VM with Windows and am doing my pdf work there right now.

If there will be no fix or no fix for fixing older annotations, using preview makes my work useless...😟

Dec 30, 2013 8:46 PM in response to SnakeMac

I'm using 10.9 (Maverick) and ran across same issue described in this thread. "Export as PDF" seems to do the trick. You write "but you will not be able to change anything anymore" but when I open it in Acrobat (trial version) it appears to let me make additional changes; so not same as what you say or I don't understand what you meant -- I am not experienced Acrobat/PDF annotator so may well be the latter.


Glad I found this thread, though I wonder if Apple sees this as something to fix (bug) or as what they intended.

Jan 1, 2014 12:19 PM in response to SnakeMac

Holy smoke, SnakeMac. You are so so right. I can't undo the Preview highlighting in either Preview or Acrobat and Exporting as PDF. Which means I have to buy Acrobat for Mac or use my cruddy ancient Windows laptop (which has an old version of Acrobat installed) just for this work.


Thanks much for your rapid and clear followup to my post.

Jun 10, 2014 3:18 AM in response to kahnrob

Problem does still exist in Mavericks 10.9.3...


Maybe a little late but I found a workaround if you want to fix those "broken highlightings" in one step:


Used Adobe Acrobat X Pro Mac (works with Windows as well, tried with Adobe Reader XI):


open PDF -> go to comments (Kommentare) -> filter comments (check type "highlighting")

-> left click on the first comment -> turns yellow and is selected

-> press shift and hold while you scroll down (use left bar if needed) and click on the last comment, then release

-> right click "properties" (Eigenschaften)

-> reselect 100% opacity (Transparenz) again (do not change color)

-> confirm


>> works!


Had to look for a solution after Adobe seemed to have lost all of my comments after I cropped, split and remerged a pdf -> comments were visible in Preview though.🙂

Nov 2, 2014 1:00 PM in response to ShannonLite

I've had luck with the following JavaScript in Acrobat to fix the opacity of all the highlights in a PDF.


This can be added to your 'Actions' in Acrobat 'Tools' as an 'Execute Javascript' action. Deselecting 'Prompt User' in the Execute JavaScript action keeps the action from prompting you with the JavaScript before executing.


Adding a 'Save' step to the action lets you perform the action on a batch of files or an entire directory.



/*

Change highlight opacity to 100%

(Changing the opacity twice appears to be necessary)

*/


this.syncAnnotScan;


var annots = this.getAnnots();

for(var i = 0; i < annots.length; i++)

{

if(annots[i].type == "Highlight")

{

annots[i].opacity = .1;

annots[i].opacity = 1; / * this is the opacity value between 0 and 1. 60% would be .6

}

}

Annotation Opacity in Preview

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.