AutoHotkey Community

It is currently May 27th, 2012, 6:58 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: What is faster?
PostPosted: February 9th, 2012, 11:37 am 
Offline

Joined: February 17th, 2011, 7:10 pm
Posts: 24
Hey.
Just a simple question, what is faster and more reliable if i have to input long line of text:
1. Using SendInput or other Send command with all the text afterwards, or
2. Assigning text to clipboard variable and then sending "Paste" key combination (Ctrl+V).
Thanks.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 9th, 2012, 11:43 am 
Pasting. Have a look at Clip() http://www.autohotkey.com/wiki/index.ph ... #Clipboard


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 9th, 2012, 1:05 pm 
Offline

Joined: July 10th, 2008, 8:49 am
Posts: 1865
Location: Brussels, Belgium
Code:
F1::
StartTime := A_TickCount
Loop 500
   Test .= A_Index
Clipboard := Test
Send ^v
EndTime := (A_TickCount - StartTime) / 1000
Msgbox % StartTime " - " A_TickCount " = " EndTime " seconds"
Return
F2::
StartTime := A_TickCount
Loop 500
   Test .= A_Index
Send % Test
EndTime := (A_TickCount - StartTime) / 1000
Msgbox % StartTime " - " A_TickCount " = " EndTime " seconds"
Return


F1 : Instant (yes, really : 0ms)
F2 : 450ms (0,45s)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 10th, 2012, 7:34 am 
Offline

Joined: February 17th, 2011, 7:10 pm
Posts: 24
Thanks for answers, from now on i'll be using pasting.
But i have another question, it seems relative. Why ControlSend is so slow? You can see symbols appear one by one. Is there a way to make it faster?


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: migz99, sjc1000 and 74 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group