home *** CD-ROM | disk | FTP | other *** search
/ AppleScript - The Beta Release / AppleScript - The Beta Release.iso / Example Scripts / Example Scripts (as text) / Finder Scripts / Get an alias < prev    next >
Encoding:
Text File  |  1992-12-02  |  222 b   |  7 lines  |  [TEXT/ToyS]

  1. tell application "Finder"
  2.     if folder "Aliases" of desktop exists then
  3.         make alias with data selection at folder "Aliases" of desktop
  4.     else
  5.         display dialog "Please create an Aliases folder on the desktop"
  6.     end if
  7. end tell