1

私はグラフィック デザインの仕事をしており、自動的に次のことを行う indesign 用のスクリプトを作成したいと考えています。

  1. 指定したドキュメント テンプレートを開きます。
  2. 新しいプロジェクト フォルダーを作成します。
  3. クリップボードからのテキストでそのフォルダーに名前を付けます。
  4. 新しく開いたドキュメントを新しく作成したフォルダーに保存し、クリップボードからの同じテキストでそのドキュメントに名前を付けます。

私は Applescript に非常に慣れていないので、非常にゆっくりと入力し、理解できるように小さな単語を使用します。

これまでのところ、コードの方法で思いついたものは次のとおりです。

tell application "Adobe InDesign CS5"
set myDocument to open "cm:Graphic_Design:Design Studio Templates:Brochure_042012_001:Brochure_042012_001.indt"
end tell
tell application "Finder"
make new folder at folder "Work" of folder "Graphic_Design" of disk "cm" with properties {name:"untitled folder"}
set name of folder "untitled folder" of folder "Work" of folder "Graphic_Design" of disk "cm" to pbpaste
end tell
4

1 に答える 1

0

試す:

tell application "Finder" to set newFolder to make new folder at "cm:Graphic_Design:Work" with properties {name:(the clipboard as text)}
tell application "Adobe InDesign CS5"
    tell active document to save saving in (newFolder as text)
    end tell
于 2012-10-24T21:41:39.770 に答える