Soy nuevo en Applescript. Estoy tratando de escribir un script para grabar un archivo de audio y guardarlo en un paquete script diferente - "PlayPro.scptd" - con el nombre pasado al scriptdesde un archivo Excel. La ruta - savePath - parece ser correcta pero no funciona. No hace nada cuando lo ejecuto. Aquí está mi script:
on RecordM4a(RecordName)
tell application "Finder"
set r to POSIX path of ((container of (path to me) as text))
set r2 to "PlayPro/Contents/Resources/AudioFiles/"
set savePath to r & r2 & RecordName
display dialog savePath
tell application "QuickTime Player"
activate
set doku to new audio recording
start doku
delay 4
stop doku
set newDoc to last item of (documents whose name contains "Untitled")
export newDoc in file savePath using settings preset "Audio Only"
close newDoc saving no
end tell
end tell
tell application "QuickTime Player"
if it is running then
quit
end if
end tell
end RecordM4a