Hi,
I am trying to download files from a dial-in server using zmoden. For some reason the very last line of the script hangs where I am inputting login info and other choices and never enters the last option. Here is a how the screen output shows:
it is that very last line with the different modem choices where i can't get my choice input into the screen. Here is the code putting in my input:
Am I just missing something here? The actual script is much longer than this and the waitfor and transmit sequences work everywhere else. When it hangs I can actually physically enter the 'Z' and hit enter and it continues.
Thanks in Advance for any ideas.
I am trying to download files from a dial-in server using zmoden. For some reason the very last line of the script hangs where I am inputting login info and other choices and never enters the last option. Here is a how the screen output shows:
Code:
Accepted
D)ownload U)pload G)oodbye
[D ]
Payer or Submitter/Provider: (P/S)
[S]
Transaction type:
[MCDS]
X)Modem O)Xmodem 1K Y)Modem G)YmodemG Z)Modem K)ermit
[ ]
it is that very last line with the different modem choices where i can't get my choice input into the screen. Here is the code putting in my input:
Code:
WAITFOR "D)ownload U)pload G)oodbye:[]"
TRANSMIT "D^M"
WAITFOR "Payer or Submitter/Provider: (P/S)[]"
TRANSMIT "S^M"
WAITFOR "Transaction Type: []"
TRANSMIT "MCDS^M"
WAITFOR "X)Modem O)XModem 1K Y)Modem G)YmodemG Z)Modem K)ermit"
TRANSMIT "Z^M"
Am I just missing something here? The actual script is much longer than this and the waitfor and transmit sequences work everywhere else. When it hangs I can actually physically enter the 'Z' and hit enter and it continues.
Thanks in Advance for any ideas.