Tengo un Servicio de sistema personalizado en mi Mac, titulado Búsqueda de Google , que coloca el texto seleccionado dentro de una URL definida y luego abre la URL en una nueva pestaña (adyacente a la pestaña actual) en Google Chrome.
Mi servicio recibe text
seleccionado en any application
. El Servicio se activa exclusivamente a través del menú contextual del botón derecho para el texto seleccionado, en todo el sistema y en todas las aplicaciones. No hay ninguna aplicación de terceros ni atajo de teclado.
De forma predeterminada, cada vez que se hace clic en un enlace que abre una nueva pestaña en Chrome mientras se mantiene ⌘ command , la pestaña actual en Chrome no cambia. La nueva pestaña se abre a la derecha e inmediatamente adyacente a la pestaña actual, pero la nueva pestaña no se convierte en la pestaña activa.
Me gustaría que la tecla ⌘ comando tenga el mismo efecto cuando ejecuto mi Servicio. De modo que:
if <the command key is being pressed when the Service is triggered> then
Open URL in a new, adjacent tab.
(Do not change the active tab.)
else
Open URL in a new, adjacent tab.
Change the active tab to the new tab.
Mi servicio consiste en una acción "Ejecutar AppleScript". Aquí está el código completo:
on run {input, parameters}
(*
When triggering this Service in applications other than Google Chrome, such as TextEdit, the Chrome window opens in the background. This command brings the Chrome window to the foreground:
*)
activate application "Google Chrome"
(*
Converting the selected text to plain text to remove any formatting:
From: http://lifehacker.com/127683/clear-text-formatting-on-os-x
*)
set selectedText to input
set selectedText to (selectedText as text)
(*
Removing any line breaks and indentations in the selected text:
From: http://stackoverflow.com/a/12546965
*)
set AppleScript's text item delimiters to {return & linefeed, return, linefeed, character id 8233, character id 8232}
set plainTextSelectedText to text items of (selectedText as text)
set AppleScript's text item delimiters to {" "}
set plainTextSelectedText to plainTextSelectedText as text
(* Assigning variables: *)
set baseURL to "https://www.google.com/search?q="
set finalLink to baseURL & plainTextSelectedText
(* Opening webpage in Chrome: *)
(*
The following tell block creates a new tab, located immediately after the currently open tab, which is what I want to occur.
From: http://apple.stackexchange.com/questions/271702/applescript-how-to-open-a-link-in-google-chrome-in-a-new-adjacent-tab/271709#271709
*)
tell application "Google Chrome"
activate
tell front window to make new tab at after (get active tab) with properties {URL:finalLink} -- open a new tab after the current tab
end tell
end run
Mi queja con el código anterior es que establece la pestaña actual en la nueva pestaña, incluso si ⌘ command se mantiene presionada cuando se inicia el Servicio.
¿Es posible que la pestaña actual no se cambie a la nueva pestaña si y solo si el usuario mantiene presionado el comando ⌘ cuando se ejecuta el Servicio?
Solo espero que la funcionalidad de la tecla ⌘ command funcione cuando se hace clic en el menú contextual del botón derecho en Chrome.app. Por ejemplo, si este Servicio se activa desde Preview.app, aunque sería bueno tener a mi disposición la posibilidad de usar la tecla ⌘ command para no cambiar la pestaña activa de la ventana de Chrome , Entiendo que esto es probablemente pedir demasiado.
Entiendo que AppleScript no tiene ningún mecanismo para verificar si se presiona una tecla en medio del script. Sin embargo, me pregunto si hay un método alternativo para crear una nueva pestaña en AppleScript que haga que Chrome haga toda la escucha para que Chrome pueda responder al ⌘ comando como lo hace naturalmente.