home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / texed133.zip / English.zip / Insert.cmd < prev    next >
OS/2 REXX Batch file  |  1995-10-16  |  375b  |  11 lines

  1. /*
  2.  *  This macro shows how to use own commands from a macro.
  3.  *  It will insert '<<' in front and '>>' behind the selected text.
  4.  *  The cursor will move '-2' steps to the right (2 steps to the left).
  5.  *
  6.  *  Please costomize only the strings '<<', '>>' and '-2'
  7.  */
  8.  
  9.     EvStr = "call i_Befehl '<<', '>>', -2"
  10.     call VRMethod 'Application', 'PostQueue',,,EvStr
  11.