我想制作一个键盘快捷方式,该快捷方式可以隐藏当前桌面上的所有窗口,而忽略其他桌面上的窗口。使用Applescript可以吗?
我想制作一个键盘快捷方式,该快捷方式可以隐藏当前桌面上的所有窗口,而忽略其他桌面上的窗口。使用Applescript可以吗?
Answers:
这是一个建议(在OSX 10.8上工作)
使用自动器:
复制此脚本:
on run {input, parameters}
tell application "System Events"
set processList to (every application process whose visible is true)
repeat with appProc in processList
set windowList to every window of appProc
repeat with aWindow in windowList
click (third button of aWindow)
end repeat
end repeat
end tell
end run
编辑:
其他脚本:
on run {input, parameters}
tell application "Finder"
set visible of every process whose visible is true and name is not "Finder" to false
close every window
end tell
end run
它会隐藏所有应用程序,但会关闭所有查找程序窗口。