Copy link to clipboard
Copied
Copy link to clipboard
Copied
It's considered rude to use this script though, because it affects the user for all documents from then on. Best to just accept what the user's preferences are, they probably are happy with them
Copy link to clipboard
Copied
Or, at the very least, ask for their permission before changing this setting, and (preferably) change it back when the file is closed.
Copy link to clipboard
Copied
You cannot export your preferences in a PDF file, but you can overide this user's preference using a script at document opening (Document level script) :
app.runtimeHighlight = false;
Copy link to clipboard
Copied
Hi JR Boulay,
Thank you very much for your fast answer! Good to know that it is not possible and only when you add a script to the file. I'm going to dig into it.
Hava a nice day,
Dorien
Copy link to clipboard
Copied
It's considered rude to use this script though, because it affects the user for all documents from then on. Best to just accept what the user's preferences are, they probably are happy with them
Copy link to clipboard
Copied
Or, at the very least, ask for their permission before changing this setting, and (preferably) change it back when the file is closed.
Copy link to clipboard
Copied
To avoid annoying users, you can use this script to restore the user's preferences when the document is closed.
// DOCUMENT LEVEL script
var hlt = app.runtimeHighlight;
app.runtimeHighlight = false;
// DOCUMENT WILL CLOSE script
app.runtimeHighlight = hlt;
Copy link to clipboard
Copied
This will only work when the user opens only one document.