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

Enable/disable contextual taskbar in Illustrator via ExtendScript

Community Expert ,
Dec 26, 2023 Dec 26, 2023

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)) ;
TOPICS
Scripting
213
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
Adobe
Community Expert ,
Dec 26, 2023 Dec 26, 2023

Great work as always! Thanks for sharing!

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 ,
Dec 27, 2023 Dec 27, 2023
LATEST

that's great @sttk3 thanks for sharing

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