home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993 April: Penguin on DISC / ADC Developer CD (1993-04) (''Penguin On DISC'')_iso / Dev.CD Apr 93.iso / System Software / System Extensions / AppleScript Beta / 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