home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 August - Disc 3
/
chip_20018103_hu.iso
/
amiga
/
chiputil
/
awebcolor2ced.lha
/
Hex2CED.awebrx
< prev
Wrap
Text File
|
2001-06-16
|
369b
|
19 lines
/* Hex2CED.awebrx ⌐ Brian Scott $VER1.00 2001*/
/*
The arg past to this script comes when a link is selected in color2CED.html.
Either the color name or the 6 character hex color code used in html.
Example output at cursor position..
#6A5ACD
or
slateblue
*/
OPTIONS RESULTS
parse arg hx
ADDRESS 'rexx_ced'
'text' translate(hx,'#','_')
'CEDTOFRONT'
EXIT