Я пытаюсь создать AppleScript для дублирования одного файла в новом месте при переименовании файла.Я зацикливался на переименовании файла.
Я попытался установить "со свойствами", установить псевдонимы, и я все еще получаю ошибки.
tell application "Finder"
set JobName to text returned of (display dialog "Please Enter Crate Name:" default answer "Job_Name")
set loc to alias "Volumes:MusicExt:_Serato_:Subcrates:"
set templatefile to alias "Volumes:MusicExt:Serato_Working:crate-template.crate"
duplicate file templatefile to loc --> with properies {name:JobName}
duplicate file templatefile to loc --> with properies {name:"10. Pre-CMY.m3u"}
end tell