DTP駆け込み寺

[ 返信 ]

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)


残り6件

  1. [16407] Indesign上のアイテムを線幅を変えずに変形 わん 2014/03/09 03:49
    1. [16408] Re: Indesign上のアイテムを線幅を変えずに変形 とり 2014/03/10 08:24
      1. [16444] Re^2: Indesign上のアイテムを線幅を変えずに変形 わん 2014/03/18 15:35
        1. [16447] Indesign上のアイテムを線幅を変えずに変形 わん 2014/03/19 17:08
          1. [16450] Re: Indesign上のアイテムを線幅を変えずに変形 -e 2014/03/19 17:58
            1. [16453] Re^2: Indesign上のアイテムを線幅を変えずに変形 わん 2014/03/19 18:32
              1. [16456] Re^3: Indesign上のアイテムを線幅を変えずに変形 -e 2014/03/20 09:06
                1. [16457] CS6ぐらいで廃止になっているのかも? わん 2014/03/20 11:25
                  1. [16458] Re: CS6ぐらいで廃止になっているのかも? -e 2014/03/20 14:20
                    1. [16462] コンパイル出来てもApplescriptエラー わん 2014/03/20 18:47 *