home *** CD-ROM | disk | FTP | other *** search
- /* Install_Fonts
-
- Installs fonts, then re-starts Wordworth.
-
- Digita ARexx Script for Wordworth 5
- Copyright ©1996, Digita International Ltd.
-
- Created: 18 June 1996
- Author: MJ
- */
-
-
- OPTIONS RESULTS
-
-
- RequestFile TITLE "Select drawer..." DRAWERSONLY
- Drawer = Result
-
- IF (RC > 0) THEN
- Exit
-
-
- IF Open('tempfile', 'ENV:Wordworth/WwFonts', R) THEN DO
- WwFontsDir = ReadLn('tempfile')
- Call Close('tempfile')
-
- Com = WwFontsDir || '//WwTools/InstallOutlines ' || Drawer
-
- Address Command Com
-
- RequestResponse "Do you wish to re-start Wordworth now?"
- If (RC > 0) THEN
- Exit
-
- Quit FORCE
- Address Command 'Run Wordworth'
-
- END