Estoy intentando cambiar el enfoque en safari para la siguiente pestaña (y la pestaña anterior)
Escribí esto que no funciona:
tell application "Safari Technology Preview"
tell window 1
set myTabNumber to current tab
set current tab to (myTabNumber - 1)
end tell
end tell
¿Cómo puedo manejar esto?
Actualización:
Pensé que esto sería mejor pero no ...:
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