[Ai]起動中のイラストレーターのバージョンを判定する
AppleScriptでイラストレーターのバージョンを判定
起動中のプロセスを見る
複数起動しているのは考えていない。..w
tell application "System Events"
set {allAppName} to {displayed name} of (every application process whose (visible is true) and (creator type is not "MACS"))
repeat with everyAppName from 1 to count of allAppName
try
if (item everyAppName of allAppName) is "Adobe Illustrator CS2" then
tell application "Finder"
activate
display dialog "CS2が起動中です"
end tell
end if
if (item everyAppName of allAppName) is "Adobe Illustrator CS3" then
tell application "Finder"
activate
display dialog "CS3が起動中です"
end tell
end if
if (item everyAppName of allAppName) is "Adobe Illustrator CS4" then
tell application "Finder"
activate
display dialog "CS4が起動中です"
end tell
end if
if (item everyAppName of allAppName) is "Adobe Illustrator CS5" then
tell application "Finder"
activate
display dialog "CS5"
end tell
end if
end try
end repeat
end tell
フォトショップ等他の
アドビクリエイティブ系ソフトにも応用が効きますね
「whats4Illustrator.scpt.zip」をダウンロード[Download]
「whats4Illustrator.rtf」をダウンロード[Download]
| 固定リンク
「AdobeAppleScript」カテゴリの記事
- MakePSUserConfig(2018.10.31)
- この手の出し方は結構好感(2017.07.03)
- [Acrobat AppleScript]tsubasaさんのコメントへのレスポンス【別ファイル】(2011.04.15)
- [PSDcs4]WEBおよびデバイス用に保存【少し直し】(2010.10.25)
- [PSDcs4]WEBおよびデバイス用に保存(2010.10.24)
この記事へのコメントは終了しました。
コメント