I have read in an applescript document that- ‘alias’ is a keyword indicating that, after compilation (i.e. checking of the syntax), the script should remember the ID of the file and, upon execution, should not ask the Finder for a file at the location as specified by the defined path, but based on the ID.
So I decided to play with it using this script-
set samplePath to alias "Mac:Miraaj:eCBTMood:anim1.png"
tell application "Finder"
open samplePath
end tell
I compiled this script and saved it as an AppleScript application. I executed it by double clicking it and it opened the correct file. Then I changed the name of file to anim2.png, and re-executed the application. I thought it should again open the same file but it gave this error:
File Mac:Miraaj:eCBTMood:anim1.png was not found
Can anyone suggest me if I have done anything wrong or interpreted 'alias' wrongly?
Thanks,
Miraaj