home *** CD-ROM | disk | FTP | other *** search
- ;-----------------------------------------------------------------------;
- ; LOGIMENU File definition for QUICKEN (Intuit) ;
- ; ;
- ; Written by Fred Stahlheber ;
- ;-----------------------------------------------------------------------;
- BEGIN LeftB, MidB, RightB, LeftM, RightM, UpM, DownM, 20, 15
- ;
- ;NOTE: with 2-button mouse, "MidB" means both buttons,
- ; and CHORDS are disabled
- ;
- LeftB: TYPE ENTER ;ENTER Key
- MidB: EXECUTE MENU
- RightB: TYPE ESC, ESC ;ESCAPE Key (2 times)
- ;
- ;
- LeftM: TYPE 0, 75 ;Left arrow movement
- RightM: TYPE 0, 77 ;Right arrow movement
- UpM: TYPE 0, 72 ;Up arrow movement
- DownM: TYPE 0, 80 ;Down arrow movement
-
- MENU: popup 1, 1, 49
-
- TEXT " F1-Help │ Account │ Edit/Find │ Quick Entry │ Print │ Activities │ Options "
- TEXT "╔═════════╧═════════╧═══════════╧═════════════╧═════════╧════════════╧═════════╗"
- SELECT 2, 3, 7, help
- SELECT 2, 13, 7, acct
- SELECT 2, 23, 9, edit
- SELECT 2, 35, 11, quick
- SELECT 2, 50, 5, print
- SELECT 2, 59, 10, activity
- SELECT 2, 72, 7, options
- PEND
-
- help: TYPE 0, 59
- acct: TYPE 0, 60
- edit: TYPE 0, 61
- quick: TYPE 0, 62
- print: TYPE 0, 63
- activity: TYPE 0, 64
- options: EXECUTE menu1
-
- menu1: MENU "Options", 10, 39, 79
- OPTION "More", plus
- OPTION "Less", minus
- OPTION "MENU", mnu
- OPTION "QUIT", quit
- MEND
-
- plus: TYPE 0, 78
- minus: TYPE 0, 74
- mnu: EXECUTE MENU
- quit: TYPE ESC
-