Yo soy muy nuevo para AppleScript y estoy tratando de hacer esto. Tengo un Safari proceso que se ejecuta en mi máquina. Me gustaría poder ir para el funcionamiento de safari y estimular una tecla de enter evento.
¿Es posible hacerlo?
El código que estoy tratando es:
on is_running(appName)
tell application "System Events" to (name of processes) contains appName
end is_running
set safRunning to is_running("Safari")
if safRunning then
run script "tell application \"Safari\"
key code 36
end tell"
return "Running"
else
return "Not running"
end if
Dentro de la run script
el key code 36
(para estimular entrar) me está dando error:
error "Expected end of line but found identifier." number -2741
Cualquier adivina donde estoy cometiendo error?