I can't understand why this code does not work. aItems is an array with paths to aliases.
repeat with j in aItems
set Aliasname to name of alias file j
display dialog Aliasname as string
end repeat
I just want to get the name of each alias in the array, but it fails with:
error number -1700 from alias file ... of startup disk to integer
When I hard code a path to an alias (literally the same path that is in j) it works just fine. What am I doing wrong?
set aItems to (every file of folder i whose kind is "Alias")– chrissphinx Dec 7 '12 at 22:37