home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / demos / 139 / filesel.ap < prev    next >
Encoding:
Text File  |  1988-02-22  |  338 b   |  15 lines

  1. |
  2. | Sample ST-Talk Pro AutoPilot script for Selecting a File    jsd 2/22/88   
  3. |___________________________________________________________________________
  4.  
  5. newfile = selectfile "A:\" "sample.doc" "doc" "Select a Document File..."
  6.  
  7. IF newfile is ""
  8.     print "No file selected!"
  9. ELSE
  10.     print newfile
  11. ENDIF
  12. print "~"
  13.  
  14. QUIT
  15.