GeekS 0 Posted September 2, 2007 Ok here we go, i'm planning to do a script that automatically draws an ascii art picture. Problem is that most of these ascii arts contain alot of 's, and those cannot be used in a send function as i know it.It's not much, but this is quite much what i wanted to make.Send(' _ _,---._ ') Send(' ,-,' `-.___ ') Send(' /-;' `._ ') Send(' /\/ ._ _,'o \ ') Send(' ( /\ _,--'\,','"`. ) ') Send(' |\ ,'o \' //\ ') Send(' | \ / ,--'""`-. ') Send(' : \_ _/ ,-' `-._ ') Send(' \ `--' / ) ') Send(' `. \`._ ,' ________,',' ') Send(' .--` ,' ,--` __\___,;' ') Send(' \`.,-- ,' ,`_)--' /`.,' ') Send(' \(; | | ) (`-/ ') Send(' `--'| |) |-/ ') Send(' | | | | | ') Send(' | | |,.,-. | |_ ') Send(' | `./ / )---` ) ') Send(' _| / ,', ,-' ') Send(' ,'|_( /-<._,' |--, ') Send(' | `--'---. \/ \ ') Send(' | / \ /\ \ ') Send(' ,-^---._ | \ / \ \ ') Send(' ,-' \----' \/ \--`. ') Send(' / \ \ \ ')So if anyone doesnt understand my question, i want to make something like a {'}, which is not possible in send function.Thanks on advance. GeekS. Share this post Link to post Share on other sites
narayanjr 0 Posted September 2, 2007 Send("Text",1) Share this post Link to post Share on other sites
botanic 0 Posted September 2, 2007 have you tried the ` i dunno if it would work off the top of my head but its close Share this post Link to post Share on other sites
GeekS 0 Posted September 2, 2007 Send("Text",1)Ah lol, i see now that it's possible to use " instead of '.Didnt know that, enough help given. Thx everyone. Share this post Link to post Share on other sites
therks 33 Posted September 2, 2007 Also can do Send(' '' ') (double the apostrophe) My AutoIt Stuff | My Github Share this post Link to post Share on other sites
oktoberfest2 0 Posted September 2, 2007 This too should work send(chr(39)) Share this post Link to post Share on other sites
The Kandie Man 5 Posted September 2, 2007 Here:Send(" _ _,---._ {Enter}") Send(" ,-,' `-.___ {Enter}") Send(" /-;' `._ {Enter}") Send(" /\/ ._ _,'o \ {Enter}") Send(" ( /\ _,--'\,','""`. ) {Enter}") Send(" |\ ,'o \' //\ {Enter}") Send(" | \ / ,--'""""`-. {Enter}") Send(" : \_ _/ ,-' `-._ {Enter}") Send(" \ `--' / ) {Enter}") Send(" `. \`._ ,' ________,',' {Enter}") Send(" .--` ,' ,--` __\___,;' {Enter}") Send(" \`.,-- ,' ,`_)--' /`.,' {Enter}") Send(" \(; | | ) (`-/ {Enter}") Send(" `--'| |) |-/ {Enter}") Send(" | | | | | {Enter}") Send(" | | |,.,-. | |_ {Enter}") Send(" | `./ / )---` ) {Enter}") Send(" _| / ,', ,-' {Enter}") Send(" ,'|_( /-<._,' |--, {Enter}") Send(" | `--'---. \/ \ {Enter}") Send(" | / \ /\ \ {Enter}") Send(" ,-^---._ | \ / \ \ {Enter}") Send(" ,-' \----' \/ \--`. {Enter}") Send(" / \ \ \ {Enter}")FAQ# 7!:http://www.autoitscript.com/autoit3/docs/faq.htm#7- The Kandie Man ;-) "So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire Share this post Link to post Share on other sites
Nahuel 1 Posted September 2, 2007 Hahahaha awesome! I love how it writes it. Share this post Link to post Share on other sites