home *** CD-ROM | disk | FTP | other *** search
/ MS DOS Archives 1 / MS-DOS_Archives_Volume_One_Walnut_Creek.iso / msdos / graphics / kd_draw3.arc / KD-MOUSE.MSC < prev    next >
Text File  |  1987-10-18  |  512b  |  46 lines

  1. ;
  2. ;     Parameters
  3. ;
  4. Sensitivity     ( 6, 6)
  5.  
  6. ;
  7. ;     Cursor Definitions
  8. ;
  9. ArrowKeys: Cursor
  10. (
  11.      Left   ([Left])
  12.      Right  ([Right])
  13.      Up     ([Up])
  14.      Down   ([Down])
  15. )
  16.  
  17. ;
  18. ;     Button Definitions
  19. ;
  20. LB:     Button
  21. (
  22.         keys([enter])
  23. )
  24. ;
  25. MB:     Button
  26. (
  27.         keys(" ")
  28. )
  29. ;
  30. RB:     Button
  31. (
  32.         keys(n)
  33. )
  34. ;
  35.  
  36. ;
  37. ;     Mouse Definition
  38. ;
  39. Mouse
  40. (
  41.      Left          (LB)
  42.      Middle     (MB)
  43.      Right     (RB)
  44.      Cursor     (ArrowKeys)
  45. )
  46.