home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / programme / trionbbs110 / Trion / menus / browse.src < prev    next >
Encoding:
Text File  |  1998-10-06  |  1.9 KB  |  120 lines

  1.  
  2. ; The menu in which a File Browse methode is selected
  3.  
  4.  
  5. Menu "Browse.menu"
  6.  
  7. flags  hotkeyable
  8. level  0 - 255 , "Browse.Ansi"
  9. prompt 0 , 0 - 255 , "|Browse Menu : "
  10. prompt 1 , 0 - 255 , "|Browse Menu : "
  11.  
  12. BEGIN     ; Start the command definitions
  13.  
  14.  
  15. Cmd "F"
  16.    ClrScr
  17.    BrowseFindGlobal
  18.    PreviousMenu                   ;   GotoMenu "File.Menu"
  19. EndCmd
  20.  
  21. Cmd "Z"
  22.    ClrScr
  23.    BrowseFindFile
  24.    PreviousMenu                   ;   GotoMenu "File.Menu"
  25. EndCmd
  26.  
  27. Cmd "L"
  28.    ClrScr
  29.    BrowseAlpha
  30.    PreviousMenu                   ;   GotoMenu "File.Menu"
  31. EndCmd
  32.  
  33.  
  34. Cmd "C"
  35.    ClrScr
  36.    BrowseChrono
  37.    PreviousMenu                   ;   GotoMenu "File.Menu"
  38. EndCmd
  39.  
  40. Cmd "R"
  41.    ClrScr
  42.    BrowseAlphaReverse
  43.    PreviousMenu                   ;   GotoMenu "File.Menu"
  44. EndCmd
  45.  
  46.  
  47. Cmd "T"
  48.    ClrScr
  49.    BrowseChronoReverse
  50.    PreviousMenu                   ;   GotoMenu "File.Menu"
  51. EndCmd
  52.  
  53.  
  54. Cmd "N"
  55.    ClrScr
  56.    BrowseChronoNew
  57.    PreviousMenu                   ;   GotoMenu "File.Menu"
  58. EndCmd
  59.  
  60.  
  61. Cmd "G"
  62.    ClrScr
  63.    BrowseChronoGLobalNew
  64.    PreviousMenu                   ;   GotoMenu "File.Menu"
  65. EndCmd
  66.  
  67.  
  68. Cmd "A"
  69.    ClrScr
  70.    BrowseChronoGLobal
  71.    PreviousMenu                   ;   GotoMenu "File.Menu"
  72. EndCmd
  73.  
  74.  
  75. Cmd "H"
  76.    ClrScr
  77.    BrowseAlphaGLobal
  78.    PreviousMenu                   ;   GotoMenu "File.Menu"
  79. EndCmd
  80.  
  81. Cmd "V"
  82.    ClrScr
  83.    BrowseChronoUnvalidated
  84.    PreviousMenu                   ;   GotoMenu "File.Menu"
  85. EndCmd
  86.  
  87.  
  88. Cmd "U"
  89.    ClrScr
  90.    BrowseChronoUnvalidatedGlobal
  91.    PreviousMenu                   ;   GotoMenu "File.Menu"
  92. EndCmd
  93.  
  94. Cmd "M"
  95.    ClrScr
  96.    BrowseAlphaNew
  97.    PreviousMenu                   ;   GotoMenu "File.Menu"
  98. EndCmd
  99.  
  100. Cmd "B"
  101.    ClrScr
  102.    BrowseAlphaGlobalNew
  103.    PreviousMenu                   ;   GotoMenu "File.Menu"
  104. EndCmd
  105.  
  106.  
  107.  
  108. Cmd ""
  109.    PreviousMenu                   ;   GotoMenu "File.Menu"
  110. EndCmd
  111.  
  112.  
  113. Cmd "Q"
  114.    PreviousMenu                   ;   GotoMenu "File.Menu"
  115. EndCmd
  116.  
  117.  
  118. END
  119.  
  120.