home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / 001g / gtm.msc < prev    next >
Text File  |  1988-08-27  |  5KB  |  161 lines

  1. ; Mouse 1.0 - Configured for GT PowerComm 14.02
  2. ;
  3. ;
  4.  
  5. Comment  ("Configured for GT PowerComm 14.02")
  6. Comment  ("  ")
  7. Comment  ("Left Button   :  Main Menu")
  8. Comment  ("Middle Button :  Enter")
  9. Comment  ("Right Button  :  Space")
  10. Comment  ("MiddleRight   :  Esc")
  11.  
  12. ; Parameters
  13. ExpertMode (No)        ; Exit menu by going off field only
  14. NoviceMode (Yes)       ; Disables left & right motion
  15. ReverseVideo (Yes)
  16. FixedMenu (No)
  17. EnableBeep (No)
  18. Sensitivity (15,5)
  19. Hysteresis (1,1)
  20.  
  21.  
  22. ;
  23. ; Cursor Definitions
  24. ;
  25. MedKeys: Cursor
  26. (
  27. Left  ()
  28. Right ()
  29. Up    ([Up])
  30. Down  ([Down])
  31. Sensitivity (15,5)
  32. Hysteresis (1,1)
  33. )
  34. ;
  35. ; Cursor Definitions
  36.  
  37. Menus: Cursor
  38. (
  39. Left  ()
  40. Right ()
  41. Up    ([Up])
  42. Down  ([Down])
  43. )
  44.  
  45. ; Button Definitions
  46.  
  47. LBM: Button (Menu(Main))
  48. MB:  Button (keys([Enter]))
  49. RB:  Button (Keys(" "))
  50. MR:  Button (Keys([ESC]))
  51.  
  52.  
  53. ; Menu Definitions
  54.  
  55. Main: Menu
  56. (
  57.  Title ("GT PowerComm")
  58.  Item ("Dialing Directory",        Keys([a-D]) Cursor(MedKeys))
  59.  Item ("Dialing Menu",             Menu(Dial), Cursor(Menus))
  60.  Item ("Configuration"             Keys([a-I]) Cursor(MedKeys))
  61.  Item ("Configure Menu",           Menu(Configure), Cursor(Menus))
  62.  Item ("OnLine Menu",              Menu(OnLine), Cursor(Menus))
  63.  Item ("Files Menu",               Menu(Files), Cursor(Menus))
  64.  Item ("Help Screen",              Keys([a-H]))
  65.  Item (" ",                        Keys())
  66.  Item ("Exit",                     Keys([a-X]))
  67.  Item (" ",                        Keys())
  68.  Footer ("by F. S. Gall")
  69. )
  70.  
  71. ;
  72.  
  73. Dial: Menu
  74. (
  75.  Title ("Dialing Directory")
  76.  Item ("Mark",               Keys("G"))
  77.  Item ("Add Entry",          Keys("A"))
  78.  Item ("Change Entry",       Keys("C"))
  79.  Item ("Delete Entry",       Keys("K"))
  80.  Item (" ",                  Keys())
  81.  Item ("Circular Dial",      Keys([a-6]))
  82.  Item ("Manual Dial",        Keys("M"))
  83.  Item (" ",                  Keys())
  84.  Item ("Locate",             Keys("L"))
  85.  Item ("Toggle Display",     Keys("T"))
  86.  Item ("Exchange Dir",       Keys("E"))
  87.  Item (" ",                  Keys())
  88.  Item ("OnLine MENU",        Menu(OnLine))
  89.  Item ("Main MENU",          Menu(Main))
  90. )
  91.  
  92. Configure: Menu
  93. (
  94.  Title ("Configuration")
  95.  Item ("Change Settings",     Keys([a-I]))
  96.  Item ("Fix Time",            Keys([a-F]))
  97.  Item ("Memory Available",    Keys([a-J]))
  98.  Item ("Baud Rate",           Keys([a-S]))
  99.  Item ("Time Used",           Keys([a-U]))
  100.  Item ("Clear Screen",        Keys([a-W]))
  101.  Item ("Toggle Beeps",        Keys([a-9]))
  102.  Item ("Log Entry",           Keys([a-0]))
  103.  Item (" ",                   Keys())
  104.  Item ("Files Menu",          Menu(Files))
  105.  Item ("OnLine MENU",         Menu(OnLine))
  106.  Item ("Main MENU",           Menu(Main))
  107. )
  108.  
  109. OnLine: Menu
  110. (
  111.  Title ("OnLine")
  112.  Item ("UpLoad a File",        Keys([a-T]))
  113.  Item ("Download a File",      Keys([a-R]))
  114.  Item ("Transmit ASCII File",  Keys([a-A]))
  115.  Item (" ",                    Keys())
  116.  Item ("Dump Screen to file",  Keys([a-2]))
  117.  Item ("Toggle Capture Mode",  Keys([a-C]))
  118.  Item ("Suspend Capture",      Keys([a-4]))
  119.  Item ("Review Capture Buffer",Keys([a-8]))
  120.  Item ("Toggle Half Duplex",   Keys([a-E]))
  121.  Item ("Time Used",            Keys([a-U]))
  122.  Item ("Clear Screen",         Keys([a-W]))
  123.  Item (" ",                    Keys())
  124.  Item ("Terminate Script",     Keys([a-X] [Esc]))
  125.  Item ("HangUp Modem",         Keys([a-Q]))
  126.  Item (" ",                    Keys())
  127.  Item ("Switch to Answer Mode",Keys([a--]))
  128.  Item ("Files MENU",           Menu(Files))
  129.  Item ("Configuration MENU",   Menu(Configure))
  130.  Item ("Main MENU",            Menu(Main))
  131. )
  132.  
  133.  
  134. Files: Menu
  135. (
  136.  Title ("Files Menu")
  137.  Item ("Display Directory",        Keys([a-L]))
  138.  Item ("Change Drive/Directory",   Keys([a-N]))
  139.  Item ("View File",                Keys([a-V]))
  140.  Item ("Copy File",                Keys([a-Y]))
  141.  Item ("Delete File",              Keys([a-K]))
  142.  Item ("Sort Dialing Directory",   Keys([a-O]))
  143.  Item ("Print File",               Keys([a-P]))
  144.  Item ("Clear Screen",             Keys([a-W]))
  145.  Item (" ",                        Keys())
  146.  Item ("Main MENU",                Menu(Main))
  147. )
  148.  
  149.  
  150. ; Mouse Definition
  151.  
  152. Mouse
  153. (
  154.  Left (LBM)
  155.  Middle (MB)
  156.  LeftRight (MB)
  157.  Right  (RB)
  158.  MiddleRight (MR)
  159.  Cursor (Menus)
  160. )
  161.