AutoID 0 Posted December 19, 2010 I'm attempting to record the delay between keystrokes. However things aren't working as I had thought they would. Below is a small example of the method I attempted. Key used is "UP". #include <Timers.au3> #include <Array.au3> #include <Misc.au3> Global $timediff[1] Global $startTime HotKeySet("x", "myexit") While 1 If _IsPressed(26) Then _ArrayAdd($timediff, TimerDiff($startTime)) $startTime = TimerInit() Sleep(10) EndIf WEnd Func myexit() _ArrayDisplay($timediff) Exit EndFunc What am I missing? And how should this be implemented? Share this post Link to post Share on other sites
Fubarable 1 Posted December 19, 2010 How are things not working? What's wrong with your program's output? Share this post Link to post Share on other sites
Melba23 3,452 Posted December 19, 2010 AutoID, Welcome to the Autoit forum. You need to wait until the key is released: #include <Array.au3> #include <Misc.au3> Global $timediff[1] HotKeySet("x", "myexit") $dll = DllOpen("user32.dll") Global $startTime = TimerInit() While 1 If _IsPressed(26, $dll) Then _ArrayAdd($timediff, TimerDiff($startTime)) While _IsPressed(26) Sleep(10) WEnd $startTime = TimerInit() Sleep(10) EndIf WEnd Func myexit() DllClose($dll) _ArrayDisplay($timediff) Exit EndFunc All clear? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
AutoID 0 Posted December 19, 2010 of course. I should have seen that .. Thanks! Share this post Link to post Share on other sites