Fast Zip
Better And Better
自动切换输入法
iShot
超级右键

新建一个访达窗口,并将两个访达窗口并列

发表时间:2021-10-24 21:26作者:陶名舟

当我想把一个文件夹里的文件转移到其他文件夹

可以打开一个新的访达窗口后拖移文件

但是新建的窗口会覆盖当前的窗口,挡住要转移的文件


于是写了一个脚本 这个脚本的逻辑:

新建一个窗口

将窗口都变成1/2屏幕大小

然后分别移动至屏幕两侧


这样新建的窗口就不会挡住要转移的文件

这个脚本只对访达有效



tell application "System Events"

key down command

keystroke (key code 45)

key up command

tell application "Finder"

set bounds of first window to {0, 0, 720, 845}

set bounds of second window to {0, 0, 720, 845}

end tell

set position of first window of application process "Finder" to {720, 0}

set position of second window of application process "Finder" to {0, 0}

end tell



分享到: