我想從Safari瀏覽器的URL,關閉選項卡,並在Chrome中打開它(TUAW Post)獲取URL,但我不斷收到錯誤:的AppleScript從Safari瀏覽器
error "Safari got an error: Can’t get current tab." number -1728 from current tab
從代碼行:
set theURL to URL of current tab of window 1
有什麼建議嗎?
所有代碼:
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
任何機會,你的Safari窗口全屏? – duozmo
不記得了。但對我的問題的解決方案進一步張貼在頁面下方 – Runar
但是在解決方案中,給你帶來麻煩的代碼行並沒有改變。我認爲這是一個零星的錯誤,只有當Safari全屏時纔會發生。 – duozmo