home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
CDTools
/
S
/
ChangeFonts.awebrx
< prev
next >
Wrap
Text File
|
2000-08-18
|
661b
|
30 lines
/*
$VER: ChangeFonts.awebrx 1.0 (2.9.99) (c) Neil Bothwick, Wirenet
*/
options results
portname = address()
parse upper arg FontSet
CDName = 'AACD13:'
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