En PCSX, (emulador de ps1), estoy tratando de automatizar los pasos para reproducir un ISO. Así que, voy a hacer esto:
set thepath to path to me
set thesecondpath to POSIX path of thepath
set thethirdpath to "Contents/PSX/ROMS/img.bin"
set thefourthpath to "/Contents/PSX/PCSX.app"
set thefifthpath to thesecondpath & thefourthpath
set theultimatepath to thesecondpath & thethirdpath
tell application thefifthpath
activate
tell application "System Events"
keystroke "i" using {command down}
keystroke theultimatepath
delay 1.0
tell process "PCSX"
click button "Go"
end tell
key code 53
end tell
end tell
Se ejecuta desde el Editor AppleScript no funciona. Lo hice para el trabajo en ejecución de la Aplicación se crea. PCSX y la img.bin están dentro del Paquete Generado.
después de pulsar comando+i, se abre una "Ir a la carpeta de diálogo", y necesito haga clic en Ir y, a continuación, Abra
Pero hacerlo de esta manera, no encontrar el cuadro de diálogo. ¿Qué estoy haciendo mal?