Yes, I could supply code but what I'm after is a snippet of an idea to follow.
I was wondering if there was a way in perl to do something like:
for (7..14) {
if ($win-> rb{$_}-> Checked()) {
... indicate found and exit loop ...
}
}
New to perl so not sure what to put for the test condition for the for loop. rb{$_) is just something to indicate my thoughts on what I want. Does that make sense?
Cheers