ぼんやりDTP

DTPに関係したりしなかったりするぼんやりとした話をなんとなく。

InDesign でアラビア語等の右から左関連の設定の JavaScript の DOM

InDesignアラビア語等の右から左関連の設定の JavaScript の DOM

  1. Story direction
    • 段組みの左右方向
    • オブジェクトスタイルに設定可能
      • ObjectStyle.storyPreferences.storyDirection
  2. Paragraph direction
    • 段落の左右方向
    • 段落スタイルに設定可能
      • ParagraphStyle.paragraphDirection
  3. Character Direction
    • 文字の左右方向
    • 段落スタイルに設定可能
      • ParagraphStyle.characterDirection
    • 文字スタイルに設定可能
      • CharacterStyle.characterDirection
  4. Table direction
    • 表の列の左右方向
    • 表スタイルに設定不可能
    • 表オブジェクトに設定可能
      • Table.tableDirection

参考ページ

  1. Arabic and Hebrew features in InDesign
  2. Adobe InDesign CS6 (8.0) Object Model JS: Story
  3. Adobe InDesign CS6 (8.0) Object Model JS: StoryPreference
  4. Adobe InDesign CS6 (8.0) Object Model JS: ParagraphStyle
  5. Adobe InDesign CS6 (8.0) Object Model JS: CharacterStyle
  6. Adobe InDesign CS6 (8.0) Object Model JS: TableStyle
  7. Adobe InDesign CS6 (8.0) Object Model JS: Table