Copy link to clipboard
Copied
Found a way to enable/disable contextual taskbar in Illustrator via ExtendScript. It is possible from Illustrator 2024(28). Just wanted to share.
var key = 'ContextualTaskBarEnabled' ;
var pref = app.preferences ;
// enable
pref.setBooleanPreference(key, true) ;
// disable
pref.setBooleanPreference(key, false) ;
// toggle
pref.setBooleanPreference(key, !pref.getBooleanPreference(key)) ;
Copy link to clipboard
Copied
Great work as always! Thanks for sharing!
Copy link to clipboard
Copied
that's great @sttk3 thanks for sharing