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

Need jsx support to enable - Preference - > Type -> Show Indic Option

Adobe Employee ,
Feb 24, 2023 Feb 24, 2023

Copy link to clipboard

Copied

Hi All , 

 

I need jsx support to enable - Preference - > Type -> Show Indic Option . Is there a way to do it ?

 

Thanks  in Advance !!

TOPICS
Scripting

Views

375

Translate

Translate

Report

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
Engaged ,
Feb 24, 2023 Feb 24, 2023

Copy link to clipboard

Copied

In Illustrator, you can change some of the application preferences using ExtendScript commands. Unfortunately, some of them take effect only after you restart Illustrator. Show Indic Option is one of them; after you change it in the script, it won't show up in the preferences until you restart Illustrator.

Votes

Translate

Translate

Report

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
Participant ,
Feb 25, 2023 Feb 25, 2023

Copy link to clipboard

Copied

You should be able to do this by combining answers to questions you have asked in the past.

Votes

Translate

Translate

Report

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
Guide ,
Feb 25, 2023 Feb 25, 2023

Copy link to clipboard

Copied

LATEST

If you're on Windows, you could try a temporary VBS script to send keystrokes to the preferences window. 

var temp;
{
    interactWithDialog();
    app.executeMenuCommand("keyboardPref");
}
function interactWithDialog() {
    var contents = 
        'Set WshShell = WScript.CreateObject("WScript.Shell")\n' + 
        'WshShell.SendKeys "{TAB}"\n' + 
        'WshShell.SendKeys "{TAB}"\n' + 
        'WshShell.SendKeys "{TAB}"\n' + 
        'WshShell.SendKeys "{TAB}"\n' + 
        'WshShell.SendKeys "{ }"\n' + 
        'WshShell.SendKeys "{ENTER}"';
    temp = new File("~/Desktop/temp.vbs");
    temp.open("w");
    temp.write(contents);
    temp.close();
    temp.execute();
}
temp.remove();

 

Votes

Translate

Translate

Report

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