Jump to content

Sending text instantly


 Share

Recommended Posts

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.
Link to comment
Share on other sites

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.
Link to comment
Share on other sites

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 bitch

he thinks im gonna hack his comp :\\\\\\\\\\\\\\\\\\

Link to comment
Share on other sites

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 by SlimShady
Link to comment
Share on other sites

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?
Link to comment
Share on other sites

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.
Link to comment
Share on other sites

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.
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...