scriptstopper 0 Posted September 26, 2010 Can someone describe the function of: While 1 ... WEnd ? I looked at the documentation and don't find anything. don't think i'm a freeloader. your help has been effective! here's the script contributed - thank you creator and thank you members and thank you authors of autoit!Call Conference Dial-in Script updated from time to time. Share this post Link to post Share on other sites
wakillon 403 Posted September 26, 2010 See this post AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
JohnOne 1,603 Posted September 26, 2010 While 1 is equal to 1 the code between will be ran in a loop, unless told to exit or an error occurs which causes the loop to end. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
trancexx 1,013 Posted September 26, 2010 (edited) While 1 is equal to 1 the code between will be ran in a loop, unless told to exit or an error occurs which causes the loop to end. Like this? While 1 If 1 Then ExitLoop WEnd Or this? While 1 If 2 Then ExitLoop WEnd What will happen in each case? Don't run the code, and don't cheat. Edited September 26, 2010 by trancexx ♡♡♡ . eMyvnE Share this post Link to post Share on other sites
Mat 376 Posted September 26, 2010 While 1 is equal to 1 the code between will be ran in a loop, unless told to exit or an error occurs which causes the loop to end.It's more like While 1 = True. AutoIt Project Listing Share this post Link to post Share on other sites
JohnOne 1,603 Posted September 26, 2010 Like this? While 1 If 1 Then ExitLoop WEnd Or this? While 1 If 2 Then ExitLoop WEnd What will happen in each case? Don't run the code, and don't cheat. I'd hazard a guess that they would both exit the loop imediately AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
scriptstopper 0 Posted September 26, 2010 (edited) I swear on the holy mother I checked to see if I already posted this question Re: While 1, Wend; before I fell asleep at the terminal last night. Checked the option to see my own posts, or so I thought... Thanks for the replies! Edited September 26, 2010 by scriptstopper don't think i'm a freeloader. your help has been effective! here's the script contributed - thank you creator and thank you members and thank you authors of autoit!Call Conference Dial-in Script updated from time to time. Share this post Link to post Share on other sites