imacrazyballoono 0 Posted May 25, 2006 I am trying to use the send command to type something that the user has typed. Send("$name$pass{TAB}$pass{ENTER}") Whenever i do that, it types it as is. what do i need to do to type the value of the variable. Share this post Link to post Share on other sites
Paulie 26 Posted May 25, 2006 I am trying to use the send command to type something that the user has typed. Send("$name$pass{TAB}$pass{ENTER}") Whenever i do that, it types it as is. what do i need to do to type the value of the variable.change it to Send($name$pass{TAB}$pass{ENTER}) Gotta get rid of quotes Share this post Link to post Share on other sites
imacrazyballoono 0 Posted May 25, 2006 (edited) I tried that, it gave me an error. Unable to parse. Edited May 25, 2006 by imacrazyballoono Share this post Link to post Share on other sites
Paulie 26 Posted May 25, 2006 I tried that, it gave me an error. Unable to parse. Actually, to send variables, you might have to do each separatly Send($name) Send($pass) Send(""{TAB}") Send($pass) Send("{ENTER}") It was because the "tab" and "enter" had to be in quotes, but variables cant Share this post Link to post Share on other sites
imacrazyballoono 0 Posted May 25, 2006 (edited) Thats annoying. Ill try it. Also, i went ahead and took out that second quote you put, Im hoping that was a typo. Edited May 25, 2006 by imacrazyballoono Share this post Link to post Share on other sites
Thatsgreat2345 0 Posted May 25, 2006 (edited) Hold up tab and enter werent goin Edited May 25, 2006 by thatsgreat2345 Share this post Link to post Share on other sites