Gottx3 0 Posted June 24, 2011 Hey Guys, I am on Training with AutoIt. I am a greenhorn How can i make this:$x = 1while 1 if $x < 51 (Tell: Your Count is: $x) $x+1 sleep(1000) endIfWendU see the red sentence, how can i write this in one order ? Thank you for help. Share this post Link to post Share on other sites
rabbitkillrun2 0 Posted June 24, 2011 (edited) You could use a Message box, like so:MsgBox(0, "Counting with X", "Your count is: " & $x)Note, however, that this will give you 50 message boxes, which could get annoying. You can find more about the MsgBox function in the documentation.Also, if you're counting between two numbers, a better way would be a For loop, rather than a While loop. For example:For $x = 1 to 50 MsgBox(0, "For loop example", "Your count is: " & $x) Sleep(1000) Next Edited June 24, 2011 by rabbitkillrun2 Share this post Link to post Share on other sites
water 2,388 Posted June 24, 2011 It's something like a countdown (or a countup). A lot of such code can be found on the forum. The first I found is which should give you an idea how it works.BTW: How do you want to exit your example script? Now it will loop forever My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
Andreik 66 Posted June 24, 2011 A for loop and a tooltip should be a nice choice: For $X = 1 To 5 ToolTip($X) Sleep(1000) Next When the words fail... music speaks Share this post Link to post Share on other sites
rabbitkillrun2 0 Posted June 24, 2011 A for loop and a tooltip should be a nice choice: For $X = 1 To 5 ToolTip($X) Sleep(1000) Next Ah yes, didn't think of using a tooltip. This looks good. Share this post Link to post Share on other sites
Gottx3 0 Posted June 24, 2011 Hmm, and what is if i want it for a output for the editor, so it writes every second (for example) the count in my open editor ? Share this post Link to post Share on other sites
rabbitkillrun2 0 Posted June 24, 2011 Do you mean typing out the number into Notepad or something? Share this post Link to post Share on other sites
Gottx3 0 Posted June 24, 2011 yes, like the send commando, for example if i write send('{G}') send('{o}') send('{t}') send('{t}') send('{x}') send('{3}') The Bot writes "gottx3" in my Editor. I want, that the bot writes my Variable in it. Share this post Link to post Share on other sites
Jos 2,211 Posted June 24, 2011 The Bot writes "gottx3" in my Editor.You did read the forums rules ...right? 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. Share this post Link to post Share on other sites
rabbitkillrun2 0 Posted June 24, 2011 Forum RulesDo not discuss automating games here. Share this post Link to post Share on other sites
Gottx3 0 Posted June 25, 2011 Do not discuss automating games here. ? And why it should be for a game? I don't understand it... Share this post Link to post Share on other sites
guinness 1,518 Posted June 25, 2011 (edited) Read the Rules again as clearly you missed this section Additional notes regarding game automation the first time you read it. Edited June 25, 2011 by guinness 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 Share this post Link to post Share on other sites