Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • EspaƱol
      • FranƧais
      • PortuguĆŖs
  • ę—„ęœ¬čŖžć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£
  • ķ•œźµ­ ģ»¤ė®¤ė‹ˆķ‹°
1

How to change stroke color in toolbar with script?

Participant ,
Sep 30, 2023 Sep 30, 2023

Is it possible to change stroke color  in toolbar with script?

I thought that I saw that before but I can not find currently..

TOPICS
Scripting , SDK
304
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

correct answers 1 Correct answer

Participant , Sep 30, 2023 Sep 30, 2023

var col = new CMYKColor();
col.cyan = 55;
col.magenta = 46;
col.yellow = 46;
col.black = 11;

 

docR.defaultStrokeColor = col

Translate
Adobe
Participant ,
Sep 30, 2023 Sep 30, 2023
LATEST

var col = new CMYKColor();
col.cyan = 55;
col.magenta = 46;
col.yellow = 46;
col.black = 11;

 

docR.defaultStrokeColor = col

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