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

Convert registration color to black

Explorer ,
Jul 12, 2013 Jul 12, 2013

Hello all, i'am looking for a script that convert all registration colors to black?

Can somebody help me?

Kind regards,

Patrick

TOPICS
Scripting
4.5K
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

Explorer , Jul 12, 2013 Jul 12, 2013

Yes this is what i am looking for. I did not know that search.

Translate
Mentor ,
Jul 12, 2013 Jul 12, 2013

Hi,

Did you try to use Find...Replace tool ("object" tag for object; "text" tag for texts) to replace applied colors?

Basically you cant edit/remove "registration" swatch but you still could replace it.

Jarek

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
Explorer ,
Jul 12, 2013 Jul 12, 2013

Yes i did but ihave to chance the text to black and thats not working whit Find and replace.

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
Mentor ,
Jul 12, 2013 Jul 12, 2013

Hi,

...the text to black and thats not working whit Find and replace...

What you mean?

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 Beginner ,
Jul 12, 2013 Jul 12, 2013

Skjermbilde 2013-07-12 kl. 11.07.41.pngIs this what you are looking for?

T

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
Explorer ,
Jul 12, 2013 Jul 12, 2013

Yes this is what i am looking for. I did not know that search.

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 ,
Jul 12, 2013 Jul 12, 2013

@Patrick – be so kind and give "Trevil72" the 10 points…

Uwe

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 16, 2016 Jun 16, 2016

My mind has been blown !

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
Contributor ,
Jun 21, 2016 Jun 21, 2016
LATEST

Hi

my be It could.

try this:

app.findObjectPreferences =

app.changeObjectPreferences =

app.findChangeGrepOptions =

app.findChangeTextOptions =

app.findTextPreferences =

app.findGrepPreferences = null;
app.findChangeGrepOptions.includeMasterPages =

app.findChangeTextOptions.includeMasterPages =

app.findChangeObjectOptions.includeLockedLayersForFind =

app.findChangeGrepOptions.includeLockedLayersForFind =

app.findChangeTextOptions.includeLockedLayersForFind = true;   

app.findTextPreferences.fillColor = "Registration";

app.changeTextPreferences.fillColor = "Black";

app.changeText();

app.findObjectPreferences.fillColor = "Registration";

app.changeObjectPreferences.fillColor = "Black";

app.changeObject();

app.findObjectPreferences.strokeColor = "Registration";

app.changeObjectPreferences.strokeColor = "Black";

app.changeObject();

John

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