如何使用Apple脚本在mac系统上隐藏excel文件。我正在使用以下几个步骤。
tell application "Microsoft Excel"
make new workbook
set visible to false
end tell
此脚本运行成功并隐藏excel应用程序。但是在docklet中查看excel文件的实例。我想在docklet中隐藏excel实例。 如果excel实例隐藏在docklet中(某些设置跟随转到文件夹
答案 0 :(得分:0)
这将切换文件的可见性......
set f to choose file with invisibles
tell application "System Events"
set visible of f to not (visible of f)
end tell
编辑 :您可以使用此隐藏Excel ...
tell application "System Events"
set visible of process "Microsoft Excel" to false
end tell