home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / epmrex.zip / MOUSE.ERX < prev    next >
Text File  |  1992-08-28  |  726b  |  17 lines

  1. /* Mouse.erx by Larry Margolis; demonstrates mouse control from Rexx
  2.    Syntax:  register_mouse  which button action shifts command
  3.    which = local/global flag; 1 = global mouse settings
  4.    button = 1, 2 or 3
  5.    action = one of
  6.      CLICK      Mouse click
  7.      SECONDCLK  Double click; follows CLICK
  8.      BEGINDRAG  Called when user starts a drag
  9.      ENDDRAG    Called when user ends the drag
  10.      CANCELDRAG Called when user cancels the drag (presses Esc)
  11.    shifts = any combination of 1 = shift, 2 = control, 4 = alt.
  12.    command = the command you want to execute; see MOUSE.E for the
  13.              standard set of commands.
  14. */
  15. /* Define Alt + Click MB1 */
  16. 'register_mouse 1 1 CLICK 4 sayerror Rexx rules!'
  17.