En PCSX, (emulador de ps1), estoy tratando de automatizar los pasos para reproducir un ISO. Entonces, estoy haciendo 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
Ejecutar desde el Editor de AppleScript no funcionará. Lo hice para funcionar ejecutando desde la aplicación que crea. PCSX y el archivo img.bin están dentro del paquete generado.
después de presionar command + i, se abre el cuadro de diálogo "Ir a la carpeta", y necesito hacer clic en Ir y luego en Abrir
Pero de esta manera, no encontrará el cuadro de diálogo. ¿Qué estoy haciendo mal?