w0_0t Posted March 12, 2005 Posted March 12, 2005 how do you send text instantly without using paste function?
layer Posted March 12, 2005 Posted March 12, 2005 Run("notepad.exe") Sleep(3000) Send("Use send to send text instantly!") FootbaG
w0_0t Posted March 12, 2005 Author 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.
w0_0t Posted March 12, 2005 Author Posted March 12, 2005 controlsettext<{POST_SNAPBACK}>can you give me an example plz? im not on my computer.
Insolence Posted March 12, 2005 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.
w0_0t Posted March 13, 2005 Author 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 :\\\\\\\\\\\\\\\\\\
SlimShady Posted March 13, 2005 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
w0_0t Posted March 13, 2005 Author 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?
Insolence Posted March 13, 2005 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.
w0_0t Posted March 13, 2005 Author 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
phillip123adams Posted March 13, 2005 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
w0_0t Posted March 13, 2005 Author 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?
Insolence Posted March 13, 2005 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.
phillip123adams Posted March 13, 2005 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
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