Gottx3 Posted June 24, 2011 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.
rabbitkillrun2 Posted June 24, 2011 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
water Posted June 24, 2011 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 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Andreik Posted June 24, 2011 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
rabbitkillrun2 Posted June 24, 2011 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.
Gottx3 Posted June 24, 2011 Author 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 ?
rabbitkillrun2 Posted June 24, 2011 Posted June 24, 2011 Do you mean typing out the number into Notepad or something?
Gottx3 Posted June 24, 2011 Author 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.
Developers Jos Posted June 24, 2011 Developers 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.
rabbitkillrun2 Posted June 24, 2011 Posted June 24, 2011 Forum RulesDo not discuss automating games here.
Gottx3 Posted June 25, 2011 Author Posted June 25, 2011 Do not discuss automating games here. ? And why it should be for a game? I don't understand it...
guinness Posted June 25, 2011 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
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