【システム環境設定】プリンタとスキャナ
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
| 固定リンク
「Print」カテゴリの記事
- [macOS13]CUPS2.3.4での混乱(2023.07.06)
- [Print]キーノートとパワーポイントのデフォルト用紙サイズをカスタム用紙サイズに追加(2021.11.21)
- プリンターCUPSのリセット(2021.11.04)
- PostScriptとサイズの数値の丸めの違い(2021.07.04)
- [AppleScripts]PS書出し用のバーチャルプリンタを追加する(簡易版)(2021.07.04)