home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / MUI / MCC_TextEditor / iSpell / Rexx / ISpellLookUp.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1999-06-13  |  283 b   |  15 lines

  1. /*
  2. $VER: ISpellLookUp.rexx 1.0 (13.06.99) by Markus K.Maier <mkm@gmx.de>
  3. */
  4. options results
  5.  
  6. parse arg what
  7.  
  8. address 'IRexxSpell' check what
  9. res = translate(left(result,1,1),"**","+-")
  10. if res = '*' then
  11.   address "COMMAND" "SetEnv Found 1"
  12. else
  13.   address "COMMAND" "SetEnv Found 0"
  14.  
  15.