Ok, here's my scenario. I need to run the following script:
waitfor "OPTION - ^[[K"
transmit "1^M"
waitfor "<order#>-<ref#> - ^[[J"
transmit "5643-1^M"
waitfor "^[[7;40H"
transmit "nc^M"
waitfor "^[[7;50H"
transmit "nc^M"
waitfor "<order#>-<ref#> - ^[[J"
transmit "5674-35^M"
waitfor "^[[7;40H"
transmit "nc^M"
waitfor "^[[7;50H"
transmit "nc^M"
The transmit line after the "order #" and "ref #" line is the ACTUAL order # and ref #. In the above script it is "5643-1" and "5674-35".
Everyday I have to input those order #'s and reference #'s (hundreds of them) and then type the "nc" that's in the script as well. And everyday the order #'s and reference #'s change. I want to develop a way to change the order #'s and ref #'s (macro in word or excel?) in the script so I can just run the script and not to have to manually type them. Is this possible?
waitfor "OPTION - ^[[K"
transmit "1^M"
waitfor "<order#>-<ref#> - ^[[J"
transmit "5643-1^M"
waitfor "^[[7;40H"
transmit "nc^M"
waitfor "^[[7;50H"
transmit "nc^M"
waitfor "<order#>-<ref#> - ^[[J"
transmit "5674-35^M"
waitfor "^[[7;40H"
transmit "nc^M"
waitfor "^[[7;50H"
transmit "nc^M"
The transmit line after the "order #" and "ref #" line is the ACTUAL order # and ref #. In the above script it is "5643-1" and "5674-35".
Everyday I have to input those order #'s and reference #'s (hundreds of them) and then type the "nc" that's in the script as well. And everyday the order #'s and reference #'s change. I want to develop a way to change the order #'s and ref #'s (macro in word or excel?) in the script so I can just run the script and not to have to manually type them. Is this possible?