Вот код, который я сейчас имею:
tell application "Finder"
get some file of (folder (POSIX file "Desktop/musics"))
end tell
Вот код, который я сейчас имею:
tell application "Finder"
get some file of (folder (POSIX file "Desktop/musics"))
end tell
Вот еще один вариант.
tell application "Finder"
set someFile to some file of folder ((path to desktop as text) & "musics")
open someFile
end tell
tell application "Finder" to open some file in the folder ¬
(POSIX file "/Users/%you%/Desktop/musics")
где %you%
должен быть заменен именем вашего домашнего каталога пользователя (он похож на дом в Finder).