home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / MOUSE / QUIKNMSE.ZIP / QKN.DEF next >
Encoding:
Text File  |  1989-12-17  |  1.7 KB  |  53 lines

  1. ;-----------------------------------------------------------------------;
  2. ;   LOGIMENU File definition for QUICKEN (Intuit)                       ;
  3. ;                                                                       ;
  4. ;   Written by Fred Stahlheber                                          ;
  5. ;-----------------------------------------------------------------------;
  6. BEGIN LeftB, MidB, RightB, LeftM, RightM, UpM, DownM, 20, 15
  7. ;
  8. ;NOTE: with 2-button mouse, "MidB" means both buttons,
  9. ;      and CHORDS are disabled
  10. ;
  11. LeftB:  TYPE ENTER    ;ENTER Key
  12. MidB:   EXECUTE MENU
  13. RightB: TYPE ESC, ESC ;ESCAPE Key (2 times)
  14. ;
  15. ;
  16. LeftM:  TYPE 0, 75    ;Left  arrow movement
  17. RightM: TYPE 0, 77    ;Right arrow movement
  18. UpM:    TYPE 0, 72    ;Up    arrow movement
  19. DownM:  TYPE 0, 80    ;Down  arrow movement
  20.  
  21. MENU: popup  1, 1, 49
  22.  
  23.         TEXT "  F1-Help │ Account │ Edit/Find │ Quick Entry │  Print  │ Activities │ Options  "
  24.         TEXT "╔═════════╧═════════╧═══════════╧═════════════╧═════════╧════════════╧═════════╗"
  25.         SELECT 2, 3, 7, help
  26.         SELECT 2, 13, 7, acct
  27.         SELECT 2, 23, 9, edit
  28.         SELECT 2, 35, 11, quick
  29.         SELECT 2, 50, 5, print
  30.         SELECT 2, 59, 10, activity
  31.         SELECT 2, 72, 7, options
  32.         PEND
  33.  
  34. help:       TYPE 0, 59
  35. acct:       TYPE 0, 60
  36. edit:       TYPE 0, 61
  37. quick:      TYPE 0, 62
  38. print:      TYPE 0, 63
  39. activity:   TYPE 0, 64
  40. options:    EXECUTE menu1
  41.  
  42. menu1: MENU "Options", 10, 39, 79
  43.         OPTION "More", plus
  44.         OPTION "Less", minus
  45.         OPTION "MENU", mnu
  46.         OPTION "QUIT", quit
  47.         MEND
  48.  
  49. plus:       TYPE 0, 78
  50. minus:      TYPE 0, 74
  51. mnu:        EXECUTE MENU
  52. quit:       TYPE ESC
  53.