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

Urgent

New Here ,
Apr 09, 2013 Apr 09, 2013

Copy link to clipboard

Copied

Hello friends

As I am new to Indesign Scripting I wanted some help.

In Edit->Spelling->user Dictionary I have added some words

now i need to export them with hyphenation

example:

allgemeinen  sholud export as allge~~mein~~~en  to a text file

Please friends help me .

TOPICS
Scripting

Views

502

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
Enthusiast ,
Apr 09, 2013 Apr 09, 2013

Copy link to clipboard

Copied

var addedWords = app.userDictionaries.everyItem().addedWords.join('\n');

destFile = File('~/Desktop/addedWords.txt');

destFile.open('w');

destFile.write(addedWords);

destFile.close();

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
New Here ,
Apr 19, 2013 Apr 19, 2013

Copy link to clipboard

Copied

LATEST

thanks for the reply but i wanted to export the word with hyphenation.

I got the correct answer from peter kharel.

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