home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Reverse
-
- PARAMETERS _a
-
- * _a is the color string to reverse
-
- IF PCOUNT() = 0
- _a = SETCOLOR()
- ENDIF
-
- PRIVATE _b
-
- * _b is the SAY color string
-
- _b = STRTRAN(SUBSTR(_a, 1, AT(",", _a)-1), "+", "")
-
- RETURN(SUBSTR(_b, AT("/", _b)+1) + "/" + SUBSTR(_b, 1, AT("/", _b)-1))
-
- * End of File
-
-