home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST83.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  368 b   |  24 lines

  1. ********************
  2.  
  3. FUNCTION Reverse
  4.  
  5.    PARAMETERS _a
  6.  
  7.    * _a is the color string to reverse
  8.  
  9.    IF PCOUNT() = 0
  10.       _a = SETCOLOR()
  11.    ENDIF
  12.  
  13.    PRIVATE _b
  14.  
  15.    * _b is the SAY color string
  16.  
  17.    _b = STRTRAN(SUBSTR(_a, 1, AT(",", _a)-1), "+", "")
  18.  
  19.    RETURN(SUBSTR(_b, AT("/", _b)+1) + "/" + SUBSTR(_b, 1, AT("/", _b)-1))
  20.  
  21. * End of File
  22.  
  23.  
  24.