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

Change Illustrator Keyboard Increment Preference with Extendscript

Participant ,
Jun 24, 2025 Jun 24, 2025

Is there a way to change the keyboard increment preference in Illustrator with Extendscript?

TOPICS
How-to , Scripting
204
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

Community Expert , Jun 24, 2025 Jun 24, 2025
It is less widely known, but can be changed in this way.
var keyboardIncrement = 2.0 ; // as points
app.preferences.setRealPreference('cursorKeyLength', keyboardIncrement) ;
Translate
Adobe
Community Expert ,
Jun 24, 2025 Jun 24, 2025

I don't think the scripting API provides access to that, unfortunately. I am happily corrected!

- Mark

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 ,
Jun 24, 2025 Jun 24, 2025
It is less widely known, but can be changed in this way.
var keyboardIncrement = 2.0 ; // as points
app.preferences.setRealPreference('cursorKeyLength', keyboardIncrement) ;
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 ,
Jun 24, 2025 Jun 24, 2025

Oh thanks @sttk3 I looked for an app.preferences for it but failed. Does anyone maintain a list of all the preference keys?

- Mark

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
Participant ,
Jun 24, 2025 Jun 24, 2025
LATEST

Thank you!

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