Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
Niidae Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
AppleScript
(section)
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
===Loop=== The loop construct has multiple variations; all using the keyword '''repeat'''. The loop can be exited via '''exit repeat'''. ; Unconditional <syntaxhighlight lang="AppleScript">repeat -- commands to be repeated end repeat</syntaxhighlight> ; Repeat a number of times <syntaxhighlight lang="AppleScript">repeat 10 times -- commands to be repeated end repeat</syntaxhighlight> ; Conditional For '''repeat while''', the block is executed as long as a condition evaluates to true. The '''repeat until''' loop is the same except that the block is executed as long as the condition evaluates to false. <syntaxhighlight lang="AppleScript">set x to 5 repeat while x > 0 set x to x - 1 end repeat set x to 5 repeat until x β€ 0 set x to x - 1 end repeat </syntaxhighlight> ; With a variable A variable is initialized to a value and after each execution of the block, the variable is incremented by the step value; 1 if not specified. <syntaxhighlight lang="AppleScript"> -- repeat the block 2000 times, i gets all values from 1 to 2000 repeat with i from 1 to 2000 -- commands to be repeated end repeat -- repeat the block 4 times, i gets values 100, 75, 50 and 25 repeat with i from 100 to 25 by -25 -- commands to be repeated end repeat </syntaxhighlight> ; Enumerate A variable has the value of each list item as the loop progresses. <syntaxhighlight lang="applescript">set total to 0 repeat with loopVariable in {1, 2, 3, 4, 5} set total to total + loopVariable end repeat </syntaxhighlight>
Summary:
Please note that all contributions to Niidae Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Encyclopedia:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
AppleScript
(section)
Add topic