私はグラフィック デザインの仕事をしており、自動的に次のことを行う indesign 用のスクリプトを作成したいと考えています。
- 指定したドキュメント テンプレートを開きます。
- 新しいプロジェクト フォルダーを作成します。
- クリップボードからのテキストでそのフォルダーに名前を付けます。
- 新しく開いたドキュメントを新しく作成したフォルダーに保存し、クリップボードからの同じテキストでそのドキュメントに名前を付けます。
私は 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