Estoy buscando automatizar Copiar, Pegar, Tabular e Izquierda en Microsoft Excel y Safari o Firefox usando Applescript. Tengo una experiencia limitada en codificación y recientemente he cumplido con un código, pero desafortunadamente no funciona según lo planeado ...
Lo que quiero que suceda;
- En el navegador Copiar
- En Excel Pegar, Izquierda, Copiar
- En el navegador Tab, Pegar, Tab x8
- Repetir
repeat 50 times
tell application "Safari" to activate
tell application "System Events"
tell process "Safari"
keystroke "c" using command down
end tell
end tell
delay 0.3
tell application "Microsoft Excel" to activate
tell application "System Events"
tell process "Microsoft Excel"
keystroke "v" using command down
delay 0.3
key code 123
keystroke "c" using command down
end tell
end tell
tell application "Safari" to activate
tell application "System Events"
tell process "Safari"
keystroke tab
keystroke "v" using command down
keystroke tab
keystroke tab
keystroke tab
keystroke tab
keystroke tab
keystroke tab
keystroke tab
keystroke tab
end tell
end tell
delay 0.3
end repeat