« [PDF]Adobe PDF プリセット( joboptions) | トップページ | [ASTERISK]アスタリスク not米印 »

[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]DownloadFile

「whats4Illustrator.rtf」をダウンロード[Download]DownloadFile

   

|

« [PDF]Adobe PDF プリセット( joboptions) | トップページ | [ASTERISK]アスタリスク not米印 »

AdobeAppleScript」カテゴリの記事

コメント

この記事へのコメントは終了しました。