PantZ4 Posted October 6, 2006 Posted October 6, 2006 How do I put in a ", when I'm using a send command? Like: Send("run "test.exe" test.exe") Thank You
AzKay Posted October 6, 2006 Posted October 6, 2006 Send("run ""test.exe"" test.exe") # MY LOVE FOR YOU... IS LIKE A TRUCK- #
PantZ4 Posted October 6, 2006 Author Posted October 6, 2006 Send("run ""test.exe"" test.exe") Wow, easy :">... Thank You
PantZ4 Posted October 6, 2006 Author Posted October 6, 2006 Just another qustion: Is there a spicfic command for the cmd? Something like cmdwrite or like that? Insted of using send . I have look on ConsoleWrite, but dosn't look like that will work, or will it?
PsaltyDS Posted October 6, 2006 Posted October 6, 2006 Just another qustion: Is there a spicfic command for the cmd? Something like cmdwrite or like that? Insted of using send . I have look on ConsoleWrite, but dosn't look like that will work, or will it? AutoIT used two quote characters: ... the single quote: ' ... and the double quote: " You can either quote included in a string by doubling up, as shown above, or by quoting one with the other. This is your string, including the double quotes in the string, all quoted within single quotes: Send('run "test.exe" test.exe')oÝ÷ Ù8ZµÆ§ë¢jeÆyÜ!z·²¢ìÖè¶" ^jw]¢æåz«¨µë-¡ªiyªâØ^²Úâî¶+jvÞvÞ!ü¨ºgÚÅç.µëaj×(f§w*.j·¥¢"è§RzwZºÚ"µÍ[ ÌÎNÝÝ^H ][ÝÔ[Y]ÛI][ÝÈÜ[Y]ÌÎNÊ Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Rauto Posted October 6, 2006 Posted October 6, 2006 try Send("run " & CHR(34) & "test.exe" & CHR(34) & " test.exe")
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