Ich versuche, die URL von Safari abzurufen, die Registerkarte zu schließen und sie in Chrome zu öffnen ( TUAW-Beitrag ) Aber ich bekomme immer wieder die Fehlermeldung:
error "Safari got an error: Can’t get current tab." number -1728 from current tab
Aus der Codezeile:
set theURL to URL of current tab of window 1
Irgendwelche Vorschläge?
Der gesamte Code:
property theURL : ""
tell application "Safari"
set t set theURL to URL of current tab of window 1
close current tab
end tell
tell application "Google Chrome"
set URL of active tab of window 1 to theURL
activate
end tell