Hi, I have an autoit script that sends strings to remote server. The script works fine when I am active on the remote server, but does not work when I am not on the remote server. The issue is I was using the send function to send my strings and if I am not active on the server send is not send the strings where I want. I updated the script to use controlsend and controlsettext, but neither of these commands works if I am on the server or not. They only send the first character of the string. Part of the issue is that I need to send the strings into a grid that autoit can't really read. I am able to open the grid and hit the down arrow until I get to the field I want to send my string. I'm thinking that since I am able to use controlsend to use the down arrow to get to the field I want I should be able to also use controlsend to send the string to that field once I am in the field. I am not sure why only the first character is sent to field.
Thanks