ARealGentleman Posted October 24, 2007 Share Posted October 24, 2007 I am still very new but I am wondering does this have a feature that records delay between Mouse clicks or keystrokes. ScrpitWriter works great but puts a default sleep(1000) between every move and not the real time. Is it possible for ir to record real time delays. Thanks in advance. Link to comment Share on other sites More sharing options...
BrettF Posted October 24, 2007 Share Posted October 24, 2007 I am still very new but I am wondering does this have a feature that records delay between Mouse clicks or keystrokes. ScrpitWriter works great but puts a default sleep(1000) between every move and not the real time. Is it possible for ir to record real time delays.Thanks in advance.Add a timerinit and timer diff in between checking for keys? Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version! Link to comment Share on other sites More sharing options...
4an1 Posted January 30, 2008 Share Posted January 30, 2008 Add a timerinit and timer diff in between checking for keys?is there way b/c iam trying to make a bot for d2 it supost to chaos and i neeed this timer rely bad not only thatwhen the maps change how can i set my bot to agust to the map Link to comment Share on other sites More sharing options...
BrettF Posted January 31, 2008 Share Posted January 31, 2008 is there way b/c iam trying to make a bot for d2 it supost to chaos and i neeed this timer rely bad not only thatwhen the maps change how can i set my bot to agust to the mapI have no bloody idea.#include <Misc.au3> Local $time, $timerWhile 1 If _IsPressed("20") Then $timer = TimerDiff($time) MsgBox(0, "", $timer) $time = TimerInit() EndIfWEnd Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version! Link to comment Share on other sites More sharing options...
lasse46 Posted October 23, 2008 Share Posted October 23, 2008 Could you explain this a little more easy i also need the recorder to get the delay between button hits. Where do i put that code exactly? Link to comment Share on other sites More sharing options...
BrettF Posted October 23, 2008 Share Posted October 23, 2008 #Include <Misc.au3> $key = "26"; Up Arrow Do Sleep (50) Until _IsPressed ($key) $timer = TimerInit () Sleep (100) Do Sleep (50) Until _IsPressed ($key) $diff = TimerDiff ($timer) MsgBox (0, "", "Difference in milliseconds: " & @CRLF & $diff) Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version! Link to comment Share on other sites More sharing options...
rasim Posted October 24, 2008 Share Posted October 24, 2008 _Timer_GetIdleTime() Link to comment Share on other sites More sharing options...
Stratego Posted November 17, 2012 Share Posted November 17, 2012 (edited) -snip - Edited November 17, 2012 by Jos Link removed Link to comment Share on other sites More sharing options...
kylomas Posted November 17, 2012 Share Posted November 17, 2012 I would be willing to pay a 3 figure anual subscription fee just to keep these idiots out! kylomas Morthawt 1 Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted November 17, 2012 Moderators Share Posted November 17, 2012 (edited) Stratego, Necro-post this once more and you go away! M23 Edited November 17, 2012 by Melba23 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 Link to comment Share on other sites More sharing options...
Developers Jos Posted November 17, 2012 Developers Share Posted November 17, 2012 (edited) @Stratego 3 things:read our forumrules before posting again.Resurrecting an 4 year old thread is not done when not related. This is the support forum... there was no question.Hey ... Guess You have extra attention also from Melba and feel you will be getting an official warning soon. We both snipped your posted somewhat. Edited November 17, 2012 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Recommended Posts