I’d love to be able to say EverImageLocation(image1,image2,image3 …) and have a list of all those images returned, respecting Eggplant ordinality.
I’m constantly writing this code:
put EveryImageLocation(image1) into foo
put EveryImageLocation(image2) into bar
put Merge2ListWithEggplantOrdinality(foo,bar) into foobar
Where that last function basically iterates through all the items in each list and sorts them into one big list.
This happens a lot when I’m looking for a control that can either be enabled or disabled. I know that I want the 5th radio button that appears on the screen, but in order to figure out which one the 5th is, I need to find all the enabled and all disabled radio buttons, combine them, and grab the 5th one.
Of course, I can write a function that does this myself. I’m not sure why I havn’t done it yet … and I’m about to. But, none the less, it would be nice to have it built in
Chris.