home *** CD-ROM | disk | FTP | other *** search
- /* */
-
- options results
- portname = address()
- parse upper arg FontSet
- CDName = 'AACD01:'
- PrefsDir = 'AWeb3DEMO/Amigactive'
- FontsPage = 'html/BrowserFonts.html'
-
-
- select
- when FontSet = 'CANCEL' then do
- address command 'copy ENVARC:'PrefsDir'/browser ENV:'PrefsDir'/browser'
- 'go home'
- end
- when FontSet = 'USE' then 'go home'
- when FontSet = 'SAVE' then do
- address command 'copy ENV:'PrefsDir'/browser ENVARC:'PrefsDir'/browser'
- 'go home'
- end
- otherwise address command 'copy 'CDName'System/Prefs/env-archive/AWeb3DEMO/Amigactive/browser.'FontSet' ENV:'PrefsDir'/browser'
- end
-
- exit
-
- /*
-
- Fonts.0 = 14
-
- Fonts.1.item='FONT.N1'
- Fonts.2.item='FONT.N2'
- Fonts.3.item='FONT.N3'
- Fonts.4.item='FONT.N4'
- Fonts.5.item='FONT.N5'
- Fonts.6.item='FONT.N6'
- Fonts.7.item='FONT.N7'
- Fonts.8.item='FONT.F1'
- Fonts.9.item='FONT.F2'
- Fonts.10.item='FONT.F3'
- Fonts.11.item='FONT.F4'
- Fonts.12.item='FONT.F5'
- Fonts.13.item='FONT.F6'
- Fonts.14.item='FONT.F7'
-
-
- select
- when FontSet = 'HELVLARGE' then do
- Fonts.1.value= 'Helvetica.font/11'
- Fonts.2.value= 'Helvetica.font/13'
- Fonts.3.value= 'Helvetica.font/15'
- Fonts.4.value= 'Helvetica.font/18'
- Fonts.5.value= 'CGTriumvirate.font/24'
- Fonts.6.value= 'CGTriumvirate.font/30'
- Fonts.7.value= 'CGTriumvirate.font/36'
- Fonts.8.value= 'Courier.font/11'
- Fonts.9.value= 'Courier.font/13'
- Fonts.10.value='Courier.font/15'
- Fonts.11.value='Courier.font/18'
- Fonts.12.value='Courier.font/24'
- Fonts.13.value='Courier.font/30'
- Fonts.14.value='Courier.font/42'
- end
- when FontSet = 'HELVSMALL' then do
- Fonts.1.value= 'Helvetica.font/9'
- Fonts.2.value= 'Helvetica.font/11'
- Fonts.3.value= 'Helvetica.font/13'
- Fonts.4.value= 'Helvetica.font/15'
- Fonts.5.value= 'Helvetica.font/18'
- Fonts.6.value= 'Helvetica.font/24'
- Fonts.7.value= 'Helvetica.font/24'
- Fonts.8.value= 'Courier.font/9'
- Fonts.9.value= 'Courier.font/11'
- Fonts.10.value='Courier.font/13'
- Fonts.11.value='Courier.font/15'
- Fonts.12.value='Courier.font/18'
- Fonts.13.value='Courier.font/24'
- Fonts.14.value='Courier.font/24'
- end
- when FontSet = 'TIMESLARGE' then do
- Fonts.1.value= 'Times.font/11'
- Fonts.2.value= 'Times.font/13'
- Fonts.3.value= 'Times.font/15'
- Fonts.4.value= 'Times.font/18'
- Fonts.5.value= 'Times.font/24'
- Fonts.6.value= 'Times.font/30'
- Fonts.7.value= 'Times.font/36'
- Fonts.8.value= 'Courier.font/11'
- Fonts.9.value= 'Courier.font/13'
- Fonts.10.value='Courier.font/15'
- Fonts.11.value='Courier.font/18'
- Fonts.12.value='Courier.font/24'
- Fonts.13.value='Courier.font/30'
- Fonts.14.value='Courier.font/42'
- end
- when FontSet = 'TIMESSMALL' then do
- Fonts.1.value= 'Times.font/9'
- Fonts.2.value= 'Times.font/11'
- Fonts.3.value= 'Times.font/13'
- Fonts.4.value= 'Times.font/15'
- Fonts.5.value= 'Times.font/18'
- Fonts.6.value= 'Times.font/24'
- Fonts.7.value= 'Times.font/24'
- Fonts.8.value= 'Courier.font/9'
- Fonts.9.value= 'Courier.font/11'
- Fonts.10.value='Courier.font/13'
- Fonts.11.value='Courier.font/15'
- Fonts.12.value='Courier.font/18'
- Fonts.13.value='Courier.font/24'
- Fonts.14.value='Courier.font/24'
- end
- when FontSet = 'RESET' then do
- 'loadsettings ENVARC:AWEB3DEMO/Amigactive'
- exit
- end
- otherwise exit
- end
-
- 'screentofront'
- 'setcfg font stem' Fonts
- */
-
-
-