home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / business / rsa303d.zip / M_RSA.MSC < prev    next >
Text File  |  1991-11-30  |  2KB  |  69 lines

  1. ;
  2. ; DLM/RSA Pop-up Menu Configuration
  3. ;
  4. Comment  ("Configured for DLM/RSA")
  5. Comment  (" ")
  6. Comment  ("Left Button:        Main Menu")
  7. Comment  ("Right Button:       Enter")
  8. Comment  ("Middle Button:      ESC")
  9. Comment  ("Left/Middle Button: F1")
  10. Comment  ("Middle/Right Button:F3")
  11. Comment  ("Left/Right Button:  ESC")
  12. ;
  13. ; Parameters
  14. ;
  15. Sensitivity (10,10)         ; (Xinc, Yinc)
  16. Hysteresis (1, 1)           ; (AutoX, AutoY)
  17. ReverseVideo (No)           ; Menu is displayed in reverse video
  18. Position(LowerRight(55,18)) ; (Col, Row) of menu center
  19. EnableBeep (Yes)            ; Beeps if wrong button pressed with menu up
  20. ;
  21. ; Cursor Definitions
  22. ;
  23. MedKeys: Cursor
  24. (
  25.    Left   ([Left])
  26.    Right  ([Right])
  27.    Up     ([Up])
  28.    Down   ([Down])
  29.    Sensitivity (10,10)
  30.    Hysteresis (1,1)
  31. )
  32. ;
  33. ; Button Definitions
  34. ;
  35. LBM: Button (Menu(Main))     ; Left button
  36. LRB: Button (Keys([ESC]))    ; Left/Right button chord
  37. LMB: Button (Keys([F1]))     ; Left/Middle button chord
  38. MRB: Button (Keys([F3]))     ; Middle/Right button chord
  39. MB: Button (Keys([ESC]))     ; Middle button
  40. RB: Button (Keys([Enter]))   ; Right button
  41. ;
  42. ; Menu Definitions
  43. ;
  44. Main: Menu
  45. (
  46.    Title ("Function Keys")
  47.    Item ("F1",                  Keys([F1]))
  48.    Item ("F2",                  Keys([F2]))
  49.    Item ("F3",                  Keys([F3]))
  50.    Item ("PLUS",                Keys("+"))
  51.    Item ("MIMUS",               Keys("-"))
  52.    Item ("F4",                  Keys([F4]))
  53.    Item ("F5",                  Keys([F5]))
  54.    Item ("ESC",                 Keys([ESC]))
  55. )
  56. ;
  57. ; Mouse Definition
  58. ;
  59. Mouse
  60. (
  61.  Left (LBM)
  62.  Middle (MB)
  63.  LeftRight (LRB)
  64.  LeftMiddle (LMB)
  65.  MiddleRight (MRB)
  66.  Right (RB)
  67.  Cursor (MedKeys)
  68. )
  69.