我有一个applescript,它将显示菜单列表并允许用户选择菜单项等。它本身运行良好。现在我尝试在 python 中运行它。我得到不允许用户交互。(-1713) 错误。
我在网上看了。我尝试了以下方法:
在同一个applescript中添加运行功能,所以我所做的只是将主要添加到运行中
在运行时告诉应用程序“AppleScript Runner” main() end tell end run
我试图在 python import os def main(): os.system ('osascript -e "tell application "ApplesScript Runner" do script /Users/eee/applescript/iTune.scpt end tell"')
if name == ' main ': main() 两种方法都行不通。谁能告诉我如何正确地做到这一点?