IterateThrough ( listOrArrayOrObject ; thisVariableName ; iterationVariableName )
Iterates through a list, array or object
Be the first to rate this function Log in to vote
Paul - Show more from this author
Peak 14 LLC http://www.peak14.solutions |
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
This is meant to make looping through variables easier and more concise. This script is meant to be used in the "Exit Loop If" script step and will handle setting 2 local variables:
You value: Default is $thisValue and is the current value of what you are looping through.
Your iteration variable: Default is "$i" and this is used as what number you are currently on through the list. Also known as the index. Starts at 1.
Example:
Set Variable [ $list; "a¶b" ]
Loop
Exit Loop If [ IterateThrough ( $list; ""; "" ) ]
Show Custom Dialog [ $thisValue ]
End Loop
The above code will display 2 dialog windows. The first one will be show "a" and the second will be "b".
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.