« Adobe Illustrator検定 マニアック | トップページ | [AppleScripts]PS書出し用のバーチャルプリンタを追加する(簡易版) »

【システム環境設定】プリンタとスキャナ


try
set theComand to ("open \"x-apple.systempreferences:com.apple.preference.printfax\"") as text
do shell script theComand
(*
com.apple.preference.printfaxは有効ではないので
apple.systempreferencesが開いて終わり
*)
end try

----一般的にはこちらの記述が良いのか?と思います
try
tell application "System Preferences"
launch
activate
set current pane to pane id "com.apple.preference.printfax"
end tell
on error
set theComand to ("open \"/System/Library/PreferencePanes/PrintAndScan.prefPane\"") as text
do shell script theComand
end try

----com.apple.preference.printfaxのアンカーは4つ
tell application "System Preferences"
launch
activate
set current pane to pane id "com.apple.preference.printfax"
properties
tell current pane
properties
set theAnchors to get name of anchors
end tell
end tell

set theComand to ("open \"x-apple.systempreferences:com.apple.preference.printfax?scan\"") as text
do shell script theComand

set theComand to ("open \"x-apple.systempreferences:com.apple.preference.printfax?fax\"") as text
do shell script theComand

set theComand to ("open \"x-apple.systempreferences:com.apple.preference.printfax?print\"") as text
do shell script theComand

set theComand to ("open \"x-apple.systempreferences:com.apple.preference.printfax?share\"") as text
do shell script theComand



プリンタとスキャナ.scpt.zip

|

« Adobe Illustrator検定 マニアック | トップページ | [AppleScripts]PS書出し用のバーチャルプリンタを追加する(簡易版) »

Print」カテゴリの記事