home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / misc1 / write.lzh / M_WRITE5.MSC < prev    next >
Encoding:
Text File  |  1985-11-30  |  4.1 KB  |  199 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. ;
  8. ; WRITING ASSISTANT Pop-up Menu Configuration
  9. ;
  10. Comment  ("Configured for WRITING ASSISTANT WITH")
  11. Comment  ("EPSON PRINTER by Mark D. Doiron and")
  12. Comment  ("Carlos M. Arnaldo")
  13.  
  14. ;
  15. ; Parameters
  16. ;
  17. Sensitivity (15,18)   ; (Xinc, Yinc)
  18. Hysteresis (6,6)      ; (AutoX, AutoY)
  19. ReverseVideo (Yes)    ; Menu is displayed in reverse video
  20. FixedMenu (No)        ; Menu is floating (centered on cursor)
  21. EnableBeep (No)       ; Enables menu switching rather than beep
  22. ExpertMode (Yes)      ; Enables expert mode, disables exit pop-up menu
  23.  
  24. ;
  25. ; Cursor Definitions
  26. ;
  27. ArrowKeys: Cursor
  28. (
  29.  Left   ([Left])
  30.  Right  ([Right])
  31.  Up     ([Up])
  32.  Down   ([Down])
  33. )
  34.  
  35. ;
  36. ; Button Definitions
  37. ;
  38. LBE: Button (Menu(Edit))        ; Left button, Edit Menu
  39. LBM: Button (Menu(Main))        ; Left button, Main Menu
  40. LBT: Button (Menu(Motion))      ; Left button, Travel/Motion Menu
  41. LBS: Button (Menu(Spelling))    ; Left button, Spelling Menu
  42. LBH: Button (Menu(Enhance))     ; Left button, Enhance Menu
  43. MB: Button  (Keys([F10]))       ; Middle button, Continue
  44. RB: Button  (Keys([Esc]))       ; Right button,  Cancel
  45.  
  46.  
  47. ;
  48. ; Menu Definitions
  49. ;
  50. Main: Menu
  51. (
  52.  Title ("MAIN")
  53.  Item ("Edit Pop-up",             Menu(Edit), Button(LBE))
  54.  Item ("Motion Pop-up",           Menu(Motion), Button(LBT))
  55.  Item ("Enhance Pop-up",          Menu(Enhance), Button(LBH))
  56.  Item ("Check Spelling",          Keys([c-Home]), Keys([F2]), Button(LBS))
  57.  Item ("Use Thesaurus",           Keys([c-F6]))
  58.  Item ("Set/Clear Tabs",          Keys([F4]))
  59.  Item ("Change Color",            Keys([s-F3]))
  60. )
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74. Edit: Menu
  75. (
  76.  Title ("EDIT")
  77.  Item ("Move Block",          Keys([F7]))
  78.  Item ("Delete Block",        Keys([s-F7]))
  79.  Item ("Copy Block",          Keys([F8]))
  80.  Item ("Reuse Block",         Keys([s-F8]))
  81.  Item ("Erase Line",          Keys([s-F6]))
  82.  Item ("Append",              Keys([s-F5]))
  83.  Item ("Adjust",              Keys([F3]))
  84.  Item ("Search & Replace",    Keys([F9]))
  85.  Item ("Go To New Page",      Keys("*" "NEW PAGE*"))
  86.  Item ("Enhance Pop-up",      Menu(Enhance), Button(LBH))
  87.  Item ("Motion Pop-up",       Menu(Motion), Button(LBT))
  88.  Item ("Main Pop-up",         Menu(Main), Button(LBM))
  89. )
  90.  
  91. Motion: Menu
  92. (
  93.  Title ("MOTION")
  94.  Item ("Top of Document",     Keys([c-Home]))
  95.  Item ("End of Document",     Keys([c-End]))
  96.  Item ("Page Up",             Keys([PgUp]))
  97.  Item ("Page Down",           Keys([PgDn]))
  98.  Item ("Enhance Pop-up",      Menu(Enhance), Button(LBH))
  99.  Item ("Edit Pop-up",         Menu(Edit), Button(LBE))
  100.  Item ("Main Pop-up",         Menu(Main), Button(LBM))
  101. )
  102.  
  103. Spelling: Menu
  104. (
  105.  Title ("SPELLING CHECKER")
  106.  Item ("1-List Possible Spellings",   Keys("1"))
  107.  Item ("2-Ignore Word, Continue",     Keys("2"))
  108.  Item ("3-Save Word, Continue",       Keys("3"))
  109.  Item ("4-Save Word, Escape",         Keys("4"))
  110.  Item ("Main Pop-up",                 Menu(Main), Button(LBM))
  111. )
  112.  
  113. Enhance: Menu
  114. (
  115. Title ("ENHANCE PRINT")
  116.  Item ("Emphasize Function",          Keys([F5]))
  117.  Item ("Reset",                       Keys("*" "P 27,64*"))
  118.  Item ("Near Letter Quality",         Keys("*" "P 27,120,1*"))
  119.  Item ("Proportional Spacing",        Keys("*" "P 27,112,1*"))
  120.  Item ("Superscript On",              Keys("*" "P 27,83,0*"))
  121.  Item ("Subscript On",                Keys("*" "P 27,83,1*"))
  122.  Item ("Super/Subscript Off",         Keys("*" "P 27,84*"))
  123.  Item ("Italics On",                  Keys("*" "P 27,52*"))
  124.  Item ("Italics Off",                 Keys("*" "P 27,53*"))
  125.  Item ("Expanded Mode On",            Keys("*" "P 27,87,49*"))
  126.  Item ("Expanded Mode Off",           Keys("*" "P 27,87,48*"))
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  Item ("Motion Pop-up",               Menu(Motion), Button(LBT))
  140.  Item ("Edit Pop-up",                 Menu(Edit), Button(LBE))
  141.  Item ("Main Pop-up",                 Menu(Main), Button(LBM))
  142. )
  143.  
  144. ;
  145. ; Mouse Definition
  146. ;
  147. Mouse
  148. (
  149.  Left(LBM)            ; Left Button:   Main menu
  150.  Middle(MB)           ; Middle Button: Continue
  151.  Right(RB)            ; Right Button:  Cancel
  152.  Cursor(ArrowKeys)
  153. )
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.