Answers:
最好的软件是Mac内置的软件。我知道你说你更喜欢基于GUI的程序(这不是软件推荐的地方,真的)但是老实说这很简单就太荒谬了。
Script Editor
(转到Finder - >应用程序 - >实用程序文件夹)打开后,单击顶部的“文件 - >新建”
将以下内容粘贴到脚本中:
tell application "Calculator" to activate
tell application "Calendar" to activate
tell application "Dictionary" to activate
Application
边注:
我刚刚意识到你也希望能够打开文件。使用AppleScript很容易:
tell application "Finder" to open POSIX file "/Users/xxx/my/file/to/open.xyz"
这将使用默认程序打开文件。希望这涵盖所有基础。