Icy Posted February 26, 2011 Share Posted February 26, 2011 Hello, I know that function "sleep" will pause script for some duration, but I would like to know if I can pause some lines. Let me explain: Btw, I'm beginner... While 1 = 1 ~I WANT TO PAUSE THISˇˇˇ FOR 2000ms~ Send ("{LEFT}") Send ("{ESC}") ~I WANT TO PAUSE THIS^^ FOR 2000ms~ (but i want to run my other lines) Send ("{RIGHT}") Sleep (100) WEnd Thanks for your help. =) Link to comment Share on other sites More sharing options...
Developers Jos Posted February 26, 2011 Developers Share Posted February 26, 2011 (edited) Have you opened the helpfile and search for that particular word? Guess not .. Edited February 26, 2011 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...
guinness Posted February 26, 2011 Share Posted February 26, 2011 ~I WANT TO PAUSE THIS^^ FOR 2000ms~ (but i want to run my other lines)What Jos said and AdlibRegister() UDF List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018 Link to comment Share on other sites More sharing options...
Icy Posted February 26, 2011 Author Share Posted February 26, 2011 Well.... I'm always checking help, but I can't explain my problem to it.. -.- But I'm not sure, that AdlibRegister() is that what I meant. Link to comment Share on other sites More sharing options...
Developers Jos Posted February 26, 2011 Developers Share Posted February 26, 2011 (edited) Well.... I'm always checking help, but I can't explain my problem to it.. -.-you can not tell me you looked for a function that "sleep"s the script for a period and didn't find the Sleep() fuction. ...... no-way! Edited February 26, 2011 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...
Icy Posted February 26, 2011 Author Share Posted February 26, 2011 I know what command sleep is for - but it will pause your whole script for that duration, but I want something that will DISABLE some lines for SELECTED DURATION - that means: it will always skip them till the time will run out.. Link to comment Share on other sites More sharing options...
PsaltyDS Posted February 26, 2011 Share Posted February 26, 2011 (edited) Just put that part of the code inside an If/EndIf that tests a Global flag: Global $f_EnableFunc = True ; Code here... If $f_EnableFunc Then ; Conditional code here... EndIf ; More code here... By setting/clearing the flag you enable/disable that block of code. There are many variations on that theme, like putting that code in a function and conditionally calling the function based on the flag's state. Edited February 26, 2011 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
Icy Posted February 26, 2011 Author Share Posted February 26, 2011 Thanx, you helped me! Link to comment Share on other sites More sharing options...
trancexx Posted February 26, 2011 Share Posted February 26, 2011 (edited) You are a helpee. If I may add... PsaltyDS is sdYTLAsp backwards and opposite case on top of that. Edited February 26, 2011 by trancexx ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
PsaltyDS Posted February 26, 2011 Share Posted February 26, 2011 If I may add... PsaltyDS is sdYTLAsp backwards and opposite case on top of that.Only on weekends, before proper caffination. I'm feeling much better now! Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Link to comment Share on other sites More sharing options...
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