Estoy intentando crear un fragmento de AppleScript que localiza el fondo de pantalla aleatorio actual y lo muestra en el Finder. Tengo el siguiente fragmento de código que encuentra la ruta POSIX del fondo de pantalla actual como una cadena:
set plistFolderPath to path to preferences folder from user domain as string
set plistPath to plistFolderPath & "com.apple.desktop.plist"
tell application "System Events"
tell property list file plistPath
tell contents
set thePath to value of property list item "NewChangePath" of property list item "default" of property list item "Background" & "/" & value of property list item "LastName" of property list item "default" of property list item "Background"
end tell
end tell
end tell
thePath
ahora es una cadena en la forma:
/ Volumes / Archive / Widescreen wallpaper / 12345_Name_2560x1440.jpg
(espacios de notas)
Intento revelar esta ruta en FInder, pero todo lo que he probado produce un error:
tell application "Finder"
reveal POSIX file of quoted form of thePath (* Error: "Can't get POSIX file of (blah)" *)
end tell
¿Cómo puedo revelar una ruta en Finder en AppleScript cuando todo lo que tengo es su ruta POSIX?