Skip to main content
Participant
July 28, 2017
Answered

Choosing a CMYK color option in Acrobat Pro DC

  • July 28, 2017
  • 3 replies
  • 1886 views

I just downloaded a trial version of Acrobat Pro DC.  I need to change the color of a font in a field box, however the only option available is RGB.  I have looked online and see that there are "sliders" for CMYK, however the RGB is the only color available to me.  I am working on a PC and NOT a Mac.  All that I see online are Mac users.  Can someone tell me how to get the CMYK option on a PC?  Thank you!

This topic has been closed for replies.
Correct answer try67

As mentioned, this can be done using a script.

This code will change a field's font color to a CMYK value (pure yellow, in this case):

this.getField("Text1").textColor = ["CMYK", 0, 0, 1, 0];

3 replies

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
July 29, 2017

As mentioned, this can be done using a script.

This code will change a field's font color to a CMYK value (pure yellow, in this case):

this.getField("Text1").textColor = ["CMYK", 0, 0, 1, 0];

Participant
June 13, 2024

HI, can you explain better how i have to do this in Windows 10?

Legend
July 29, 2017

There are no CMYK sliders on Windows and they don't work on Mac.

Legend
July 28, 2017

The CMYK sliders also set RGB on a Mac. Only Javascript programmers can set CMYK. No profile can be set. 

Participant
July 29, 2017

This is what appears when I try to change colors.  No CMYK dropdown option.  Are you saying there is no way on a PC to be able to set CMYK colors?