Copy link to clipboard
Copied
I'm creating a script to recolor Artwork using designated Swatch Group and then open Recolor Artwork panel in advanced mode for the users to optimize the setting.
I can open Recolor Artwork with app.executeMenuCommand("Recolor Art Dialog"), but it opens in the default mode if the preference is not set to advanced mode.
Is there a script to open Recolor Artwork panel in advanced mode whether or not the preference is set to advanced mode?
Or, is there a script to set preference to advanced mode?
Open the Preferences file in a text editor and look for a desired keyword. The script to set preference to advanced mode was as follows:
app.preferences.setBooleanPreference('ColorHarmony/AdvanceDialogDefaultOn', true)
Copy link to clipboard
Copied
Open the Preferences file in a text editor and look for a desired keyword. The script to set preference to advanced mode was as follows:
app.preferences.setBooleanPreference('ColorHarmony/AdvanceDialogDefaultOn', true)
Copy link to clipboard
Copied
Your answer worked!
Thank you so much, sttk3.
And thank you also for the tip about opening the Preferences file in text editor.