我最近更新到 OS Mavericks,我的一些处理 Google Chrome 的 applescript 似乎已经停止正常工作。
我有一个简单的功能,可以打开 chrome 并创建一个新窗口..
on openWindow()
tell application "Google Chrome"
activate
set newWin to make new window
tell active tab of newWin to set URL to "http://play.google.com/music"
end tell
end openWindow
但是,这给了我错误:预期行尾但找到属性。
指“告诉newWin的活动选项卡”中的“选项卡”。这个链接似乎提供了一些帮助,但我仍然不知道如何解决这个问题。任何人都可以帮我重新开始工作吗?谢谢。