AppleScript: Apri l'URL in una scheda specifica (Google Chrome)

0

Non riesco più ad aprire un URL in una scheda specifica utilizzando AppleScript. Ho provato il seguente codice senza successo:

set URL of tab 1 to "https://"

e

set myLink to "https://"
tell application "Google Chrome"
    activate
    tell front window to make new tab 1 with properties {URL:myLink}
end tell

nessuno dei quali esegue l'azione desiderata.

Domanda
Cosa devo modificare nel codice per poter eseguire questa attività?

    
posta Kevin 09.03.2018 - 07:28
fonte

1 risposta

1

Questo funziona per me sull'ultima versione di macOS Sierra

set myLink to "https://google.com/"

tell application "Google Chrome"
    tell its window 1
        set theTabs to count of tabs -- how mmany open tabs
        set URL of tab 1 to myLink -- insert desired tab
        --set URL of (make new tab) to myLink
    end tell
end tell
    
risposta data 09.03.2018 - 08:07
fonte

Leggi altre domande sui tag