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

  1.  
  2. ; Select a file transfer protocol
  3.  
  4. Menu "Protocol_rip.menu"
  5.  
  6. flags  hotkeyable, noscreen
  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. BuildScreen
  15.    CliDoor  "trion:utils/ripdoor ~50 9"
  16. EndCmd
  17.  
  18. Cmd "Z"                           ; Zmodem  (Default)
  19.    ChangeProtocol "0"
  20.    PreviousMenu                   ; GotoMenu "File.Menu"
  21. EndCmd
  22.  
  23. Cmd "Y"                           ; Ymodem
  24.    ChangeProtocol "1"
  25.    PreviousMenu                   ; GotoMenu "File.Menu"
  26. EndCmd
  27.  
  28. Cmd "G"                           ; Ymodem-G
  29.    ChangeProtocol "2"
  30.    PreviousMenu                   ; GotoMenu "File.Menu"
  31. EndCmd
  32.  
  33. Cmd "X"                           ; Xmodem
  34.    ChangeProtocol "5"
  35.    PreviousMenu                   ; GotoMenu "File.Menu"
  36. EndCmd
  37.  
  38. Cmd "C"                           ; Xmodem-CRC
  39.    ChangeProtocol "6"
  40.    PreviousMenu                   ; GotoMenu "File.Menu"
  41. EndCmd
  42.  
  43. Cmd "B"                           ; Xmodem-1K
  44.    ChangeProtocol "7"
  45.    PreviousMenu                   ; GotoMenu "File.Menu"
  46. EndCmd
  47.  
  48. Cmd "A"                           ; Xmodem-1K-G
  49.    ChangeProtocol "8"
  50.    PreviousMenu                   ; GotoMenu "File.Menu"
  51. EndCmd
  52.  
  53. Cmd "K"                           ; Kermit
  54.    ChangeProtocol "9"
  55.    PreviousMenu                   ; GotoMenu "File.Menu"
  56. EndCmd
  57.  
  58.  
  59. Cmd ""
  60.    PreviousMenu                   ; GotoMenu "File.Menu"
  61. EndCmd
  62.  
  63.  
  64. Cmd "Q"
  65.    PreviousMenu                   ; GotoMenu "File.Menu"
  66. EndCmd
  67.  
  68.  
  69. END
  70.  
  71.