Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
2

Preferences PDF file send to someone else

New Here ,
Jun 10, 2023 Jun 10, 2023
Hi everyone,
 
I have a question and hopefully, someone can help me. My question is: can I send a PDF file with my specific preferences (Edit > Preferences > Deselect 'Show prompt border color for fields') to someone else and have my preferences transferred to their computer?
 
I would like the fillable fields not to light up blue, but to remain transparent.
 
Thanks in advance for your help.
 
Greeting from Dorien from The Netherlands
TOPICS
Edit and convert PDFs , PDF , PDF forms
728
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
2 ACCEPTED SOLUTIONS
LEGEND ,
Jun 10, 2023 Jun 10, 2023

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  

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 10, 2023 Jun 10, 2023

Or, at the very least, ask for their permission before changing this setting, and (preferably) change it back when the file is closed.

 

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 10, 2023 Jun 10, 2023

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;


Acrobate du PDF, InDesigner et Photoshoptographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 10, 2023 Jun 10, 2023

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 10, 2023 Jun 10, 2023

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  

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 10, 2023 Jun 10, 2023

Or, at the very least, ask for their permission before changing this setting, and (preferably) change it back when the file is closed.

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 12, 2023 Jun 12, 2023

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;


Acrobate du PDF, InDesigner et Photoshoptographe
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 12, 2023 Jun 12, 2023
LATEST

This will only work when the user opens only one document.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines