sleepy Posted December 14, 2006 Share Posted December 14, 2006 I want to use send("some text" & $somevar "somemore text" & $somevar2 "somemore text" & $var3) In my script I have the variables defined and I can use them one at a time. When I mix the plain test string with cariables I get script errors with the quote at the start, if I remove the quote I get missing " at the start. Anyone have an example of send using text and variables?? thanks!!! Sleepy Link to comment Share on other sites More sharing options...
JSThePatriot Posted December 14, 2006 Share Posted December 14, 2006 I want to use send("some text" & $somevar "somemore text" & $somevar2 "somemore text" & $var3) In my script I have the variables defined and I can use them one at a time. When I mix the plain test string with cariables I get script errors with the quote at the start, if I remove the quote I get missing " at the start. Anyone have an example of send using text and variables?? thanks!!! SleepyYou are just missing some ampersands (&). Your code:Send("some text" & $somevar1 "some more text" & $somevar2 "even more text" & $somevar3)oÝ÷ Ø(Z¡«¢+ÙM¹ ÅÕ½ÐíͽµÑáÐÅÕ½ÐìµÀìÀÌØíͽµÙÈĵÀìÅÕ½Ðíͽµµ½ÉÑáÐÅÕ½ÐìµÀìÀÌØíͽµÙÈȵÀìÅÕ½ÐíÙ¸µ½ÉÑáÐÅÕ½ÐìµÀìÀÌØíͽµÙÈÌ I hope this helps. JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more) Link to comment Share on other sites More sharing options...
sleepy Posted December 14, 2006 Author Share Posted December 14, 2006 Thanks that did it, man I spent way too much time on trying to figure that out. Thanks JS !!!! You are just missing some ampersands (&). Your code:Send("some text" & $somevar1 "some more text" & $somevar2 "even more text" & $somevar3)oÝ÷ Ø(Z¡«¢+ÙM¹ ÅÕ½ÐíͽµÑáÐÅÕ½ÐìµÀìÀÌØíͽµÙÈĵÀìÅÕ½Ðíͽµµ½ÉÑáÐÅÕ½ÐìµÀìÀÌØíͽµÙÈȵÀìÅÕ½ÐíÙ¸µ½ÉÑáÐÅÕ½ÐìµÀìÀÌØíͽµÙÈÌ I hope this helps. JS Link to comment Share on other sites More sharing options...
JSThePatriot Posted December 14, 2006 Share Posted December 14, 2006 Thanks that did it, man I spent way too much time on trying to figure that out.Thanks JS !!!!You are more than welcome! Glad I could help.JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now