Je tente de changer le focus sur Safari pour l'onglet suivant (et l'onglet précédent)
J'ai écrit ceci qui ne fonctionne pas :
tell application "Safari Technology Preview"
tell window 1
set myTabNumber to current tab
set current tab to (myTabNumber - 1)
end tell
end tell
Comment puis-je gérer cela?
Mise à jour :
J'ai pensé que cela serait mieux mais non... :
tell application "Safari Technology Preview"
tell window 1
set myTab to (index of current tab)
set goodtab to (myTab + 1)
set current tab to tab goodtab
end tell
end tell