Sto cercando di automatizzare Copia, Incolla, Tab e Sinistra in Microsoft Excel e Safari o Firefox usando Applescript. Ho una limitata esperienza nella programmazione e recentemente ho rispettato un codice, ma sfortunatamente non funziona come previsto ...
Quello che voglio succedere;
- Nella copia del browser
- In Excel Incolla, Sinistra, Copia
- Nella scheda Browser , Incolla, Scheda x8
- Ripetere
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