w0_0t 0 Posted March 12, 2005 how do you send text instantly without using paste function? Share this post Link to post Share on other sites
layer 2 Posted March 12, 2005 Run("notepad.exe") Sleep(3000) Send("Use send to send text instantly!") FootbaG Share this post Link to post Share on other sites
w0_0t 0 Posted March 12, 2005 Run("notepad.exe") Sleep(3000) Send("Use send to send text instantly!")<{POST_SNAPBACK}>....im not stupid that will SEND THE TEXT.. however im not new at this. I want it just to.. appear, and not type it out. Share this post Link to post Share on other sites
w0_0t 0 Posted March 12, 2005 controlsettext<{POST_SNAPBACK}>can you give me an example plz? im not on my computer. Share this post Link to post Share on other sites
Insolence 2 Posted March 12, 2005 It probably won't work in Q3A. Download AutoIT on that computer and have a look at the help file, it has an example "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar. Share this post Link to post Share on other sites
w0_0t 0 Posted March 13, 2005 It probably won't work in Q3A.Download AutoIT on that computer and have a look at the help file, it has an example <{POST_SNAPBACK}>lol would you mind giving me the example. the owner's being a bitchhe thinks im gonna hack his comp :\\\\\\\\\\\\\\\\\\ Share this post Link to post Share on other sites
SlimShady 1 Posted March 13, 2005 (edited) how do you send text instantly without using paste function?<{POST_SNAPBACK}>Nearly impossible.As LArry said you can use ControlSetText.But that way is not always wanted, because it replaces all the current text with new text.As far as I know the ONLY way to send text instantly is USING paste.2 Examples:1.$Text = "Send this text please..." ClipPut($Text) Send('^v') ; Ctrl+V (paste the text)2.$Text = "Send this text please..." ClipPut($Text) ControlSend('Window Title', '', 'Edit1', '^v') ; Ctrl+V (paste the text) Edited March 13, 2005 by SlimShady Share this post Link to post Share on other sites
w0_0t 0 Posted March 13, 2005 Nearly impossible.As LArry said you can use ControlSetText.But that way is not always wanted, because it replaces all the current text with new text.As far as I know the ONLY way to send text instantly is USING paste.2 Examples:1.$Text = "Send this text please..." ClipPut($Text) Send('^v') ; Ctrl+V (paste the text)2.$Text = "Send this text please..." ClipPut($Text) ControlSend('Window Title', '', 'Edit1', '^v') ; Ctrl+V (paste the text)<{POST_SNAPBACK}>man, i cant believe theres no way to do that i would've imagined that that would be important? Share this post Link to post Share on other sites
SlimShady 1 Posted March 13, 2005 Why can't you use the given solutions? Share this post Link to post Share on other sites
Insolence 2 Posted March 13, 2005 What are you talking about woot... "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar. Share this post Link to post Share on other sites
SlimShady 1 Posted March 13, 2005 Whatever... I'm out... Share this post Link to post Share on other sites
w0_0t 0 Posted March 13, 2005 (edited) lol sry just sayin i would think there shud be a way that you can send text faster or slower just.. sometimes you cant use paste Edited March 13, 2005 by w0_0t Share this post Link to post Share on other sites
phillip123adams 0 Posted March 13, 2005 lol sry just sayin i would think there shud be a way that you can send text faster or slower just.. sometimes you cant use paste<{POST_SNAPBACK}>There is. Check the help file for AutoItSetOption, SendKeyDelay. Phillip Share this post Link to post Share on other sites
w0_0t 0 Posted March 13, 2005 There is. Check the help file for AutoItSetOption, SendKeyDelay.<{POST_SNAPBACK}>thank you? wow... why didnt anyone tell me this before? Share this post Link to post Share on other sites
Insolence 2 Posted March 13, 2005 I know for a FACT someone did. "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar. Share this post Link to post Share on other sites
phillip123adams 0 Posted March 13, 2005 thank you? wow... why didnt anyone tell me this before?<{POST_SNAPBACK}>You're welcome. I was not sure it would help as post #1 said "instantly", but I'm pleased it did. Phillip Share this post Link to post Share on other sites