[AppleScript]FinderWindowの複製(Clone of Clone Window)
単機能アプリClone WindowのAppleScriptクローン
全面のFinder Windowを複製するだけの単機能だけど
結構な利用頻度が出ているので、デザイナー向きなんだろうか?
ダウンロード - clone20of20clone20window.zip
try
tell application "Finder"
activate
set theFolder to (the target of the front window) as alias
set theView to current view of the front Finder window
set {x1, y1} to position of front window
make new Finder window to theFolder
set position of front window to {(x1 + 20), (y1 + 20)}
set current view of front Finder window to theView
end tell
end try
scpt版はScriptメニューに登録して利用
| 固定リンク
「AppleScript」カテゴリの記事
- [AppleScript]キーノートの書類サイズを指定して作成(2022.01.09)
- [awk]行頭のスペースを削除する(subで置き換え)(2021.11.16)
- [SpotLight]選択範囲でSpotLight検索(2021.11.03)
- [AppleScript]リソースフォーク(カスタムアイコン)削除(2021.10.12)
- [AppleScript]FinderWindowの複製(Clone of Clone Window)(2021.06.27)