DTP駆け込み寺

No.16447へ返信

記事投稿フォーム
補助
送信

[ 返信 ]

Indesign上のアイテムを線幅を変えずに変形

対象のプロパティを探してコンパイルをしてみました。

tell application "Adobe InDesign CS4"
 try
  -- 【拡大 / 縮小時】:when scaling
  -- apply to content:内容に適用
  -- adjust scaling percentage:拡大縮小率を調整
  -- 【拡大 / 縮小時に線幅を調整】:adjust stroke weight when scaling
  -- boolean
  -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  tell transform preference
   -- set when scaling to apply to content ※構文エラー
   -- set adjust stroke weight when scaling to false ※構文エラー
  end tell
  -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  set when scaling of transform preference to apply to content -- ※Applescriptエラー
  set adjust stroke weight when scaling of transform preference to false -- ※Applescriptエラー
  -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  set MyDocument to active document
  tell MyDocument
   -- 変形処理
  end tell
 end try
end tell

[16447] わん (2014/03/19 Wed 17:08)