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

  1.  
  2. ; Select a file transfer protocol
  3.  
  4. Menu "Protocol.menu"
  5.  
  6. flags  hotkeyable
  7. level  0 - 255 , "Protocol.Ansi"
  8. prompt 0 , 0 - 255 , "|Protocol Menu : "
  9. prompt 1 , 0 - 255 , "|Protocol Menu : "
  10.  
  11. BEGIN     ; Start the command definitions
  12.  
  13.  
  14. Cmd "Z"                           ; Zmodem  (Default)
  15.    ChangeProtocol "0"
  16.    PreviousMenu                   ; GotoMenu "File.Menu"
  17. EndCmd
  18.  
  19. Cmd "Y"                           ; Ymodem
  20.    ChangeProtocol "1"
  21.    PreviousMenu                   ; GotoMenu "File.Menu"
  22. EndCmd
  23.  
  24. Cmd "G"                           ; Ymodem-G
  25.    ChangeProtocol "2"
  26.    PreviousMenu                   ; GotoMenu "File.Menu"
  27. EndCmd
  28.  
  29. Cmd "X"                           ; Xmodem
  30.    ChangeProtocol "5"
  31.    PreviousMenu                   ; GotoMenu "File.Menu"
  32. EndCmd
  33.  
  34. Cmd "C"                           ; Xmodem-CRC
  35.    ChangeProtocol "6"
  36.    PreviousMenu                   ; GotoMenu "File.Menu"
  37. EndCmd
  38.  
  39. Cmd "B"                           ; Xmodem-1K
  40.    ChangeProtocol "7"
  41.    PreviousMenu                   ; GotoMenu "File.Menu"
  42. EndCmd
  43.  
  44. Cmd "A"                           ; Xmodem-1K-G
  45.    ChangeProtocol "8"
  46.    PreviousMenu                   ; GotoMenu "File.Menu"
  47. EndCmd
  48.  
  49. Cmd "K"                           ; Kermit
  50.    ChangeProtocol "9"
  51.    PreviousMenu                   ; GotoMenu "File.Menu"
  52. EndCmd
  53.  
  54.  
  55. Cmd ""
  56.    PreviousMenu                   ; GotoMenu "File.Menu"
  57. EndCmd
  58.  
  59.  
  60. Cmd "Q"
  61.    PreviousMenu                   ; GotoMenu "File.Menu"
  62. EndCmd
  63.  
  64.  
  65. END
  66.  
  67.