I recently updated to OS Mavericks and it appears a few of my applescripts dealing with Google Chrome have stopped working properly.
I have a simple function that opens chrome and creates a new window..
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
However, this gives me the error: Expected end of line but found property.
referring to the "tab" in "tell active tab of newWin." This link seems to offer a bit of help, but I'm still lost as to how to fix this issue. Can anyone help me get this working again? Thanks.