Я пытаюсь сделать так, чтобы, когда пользователь запускает приложение из-за пределов папки «Приложения», на экране появляется предупреждение, спрашивающее, хочет ли он переместить приложение в папку «Приложения», если приложение еще не существует. Я попробовал следующее:
tell application (path to frontmost application as text)
set myApp to path of document 1
set folderApplications to "/Applications" as POSIX file
set anyApp to "/Applications/My.app" as POSIX file
tell application "Finder"
if exists anyApp then
display alert "There is already an App with the same name in Applications Folder.
return
else
tell application "System Events"
move myApp to folderApplications
end tell
end if
end tell
end tell
ОШИБКА: не удается получить «класс FTPc» документа 1. (ошибка -1728)