home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / wp_dtp / spellche.lha / SpellCheck / InstallFont next >
Text File  |  1992-08-03  |  670b  |  25 lines

  1. .K ""
  2. echo "This script will install the SpellCheck font in your FONTS: directory."
  3. echo ""
  4.  
  5. ask "Do you wish to continue with the installation? [y/n]"
  6. if WARN
  7.   if not EXISTS fonts:SpellCheck.font
  8.     echo "No existing SpellCheck.font, installing SpellCheck font..."
  9.     copy fonts fonts: all
  10.   else
  11.     echo "Found an existing SpellCheck.font in your FONTS: directory."
  12.     ask "Do you wish to replace it with this version of the font? [y/n]"
  13.       if WARN
  14.         echo "Updating SpellCheck font..."
  15.     copy fonts fonts: all
  16.       else
  17.         echo "Font unchanged."
  18.       endif
  19.     endif
  20.   endif
  21. endif
  22.  
  23. echo "All Done.  Click close gadget to get rid of window."
  24. endcli
  25.