home *** CD-ROM | disk | FTP | other *** search
/ Welcome to Africa / Welcome_to_Africa_CD-ROM_Walnut_Creek_September_1994.iso / africa.inf < prev    next >
Text File  |  1994-05-02  |  2KB  |  60 lines

  1. ;; This script does six things:
  2. ;; 1/ It copies the True Type font AFRICA.TTF into the Windows System directory.
  3. ;; 2/ It copies AFRICA.ICO into the Windows directory.
  4. ;; 3/ It updates WIN.INI so that TBKMM.SBK is a system book.
  5. ;; 4/ It saves the Windows directory in WIN.INI.
  6. ;; 5/ It installs the Africa font in Windows.
  7. ;; 6/ It creates a program group in Windows, with three elements in it:
  8. ;;    - Tbook intro.tbk
  9. ;;    - Tbook yourbook.tbk
  10. ;;    - Readme.txt
  11. ;; It leaves all the files on the CD ROM.
  12.  
  13. Dialog 3000
  14.   Installing "Welcome to Africa".
  15.   This should only take a moment.
  16. EndDialog
  17.  
  18. CopyFiles from [InstallFromDirectory] to [WindowsSystemDirectory]
  19.   africa.ttf
  20. EndCopyFiles
  21.  
  22. CopyFiles from [InstallFromDirectory] to [WindowsDirectory]
  23.   africa.ico
  24.   africa2.ico
  25. EndCopyFiles
  26.  
  27. [Array2][1] := Toolbook
  28. [Array2][2] := startupSysBooks
  29. [Array2][3] := TBKMM.SBK
  30. WriteProfileString using [Array2]
  31.  
  32. [Array2][1] := Toolbook
  33. [Array2][2] := windowsDirectory
  34. [Array2][3] := [WindowsDirectory]
  35. WriteProfileString using [Array2]
  36.  
  37. Dialog 2000
  38.   Installing the Africa Font into Windows.
  39. EndDialog
  40.  
  41. ;; Run [InstallFromDirectory]\tbook.exe [InstallFromDirectory]\instfont.tbk
  42.  
  43. [Array1][1] := fonts
  44. [Array1][2] := Southern (TrueType)
  45. [Array1][3] := africa.fot
  46. WriteProfileString Using [Array1]
  47. [Number1] := AddFontResource [WindowsSystemDirectory]\africa.fot
  48.  
  49. BuildProgramGroup "Welcome to Africa" weltoafr.grp
  50.   [InstallFromDirectory]\tbook.exe [InstallFromDirectory]\images\intro.tbk "Welcome to Africa" africa.ico
  51.   [InstallFromDirectory]\tbook.exe [InstallFromDirectory]\yourbook.tbk "Your own Africa book" africa2.ico
  52.   notepad.exe [InstallFromDirectory]\readme.txt "Read Me First"
  53. EndBuildProgramGroup
  54.  
  55. Dialog
  56.   Installation complete. Have fun.
  57. EndDialog
  58. SoLong
  59. EndScript
  60.