home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / ADPro251-3.DMS / ADPro251-3.adf / FREDScripts.lha / FREDSavers / FieldBuster.fred.post < prev    next >
Encoding:
Text File  |  1994-01-31  |  645 b   |  36 lines

  1. /*
  2. ** FieldBuster.fred.post
  3. **
  4. ** $VER: FieldBuster.fred.post 1.2.0 (24.10.93)
  5. **
  6. ** If the FieldBuster.fred script appears in the InvokeADPro list,
  7. ** this program will delete all temporary files generated in the
  8. ** FieldBusted.fred script.
  9. **
  10. ** This script requires FRED v1.4.0 (or higher) to run.  Also required is
  11. ** ADPro v2.5.0 (or higher).
  12. **
  13. ** Copyright © 1992-1993 ASDG, Incorporated
  14. ** All Rights Reserved
  15. */
  16.  
  17.  
  18. ADDRESS "ADPro"
  19. OPTIONS RESULTS
  20.  
  21. NL = '0A'X
  22. SQ = '27'X
  23. DQ = '22'X
  24. TRUE  = 1
  25. FALSE = 0
  26. TempBustedFields = "T:TempBustedFields"
  27.  
  28.  
  29. /*
  30. ** Remove the temporary files.
  31. */
  32.  
  33. ADDRESS COMMAND "Delete >NIL:" TempBustedFields
  34.  
  35. EXIT 0
  36.