tell application "Finder" to open some file in the folder ¬ (POSIX file "/Users/%you%/Desktop/musics")
Wo %you%
soll der Name Ihres Heimatverzeichnisses des Benutzers verwendet werden (es ist das, das im Finder wie ein Haus aussieht ).
Hier ist der Code, den ich jetzt habe:
tell application "Finder" get some file of (folder (POSIX file "Desktop/musics")) end tell
tell application "Finder" to open some file in the folder ¬ (POSIX file "/Users/%you%/Desktop/musics")
Wo %you%
soll der Name Ihres Heimatverzeichnisses des Benutzers verwendet werden (es ist das, das im Finder wie ein Haus aussieht ).
Hier ist eine weitere Option.
tell application "Finder" set someFile to some file of folder ((path to desktop as text) & "musics") open someFile end tell