Hi everyone,
just started, a few day ago, to use this great tool and so far it's going really well. I have one question though:
I have an array that contains a number of different objects. These objects have different instance variables. What I want is to loop through this array and compare the instance variables values of these objects with some other value.
How do I access the instance variables values of these objects?
For the programmers out there, what I want to achieve is something like this:
for (i = 0; i < array.length; i++)
{
if (array[i].instancevariable.value > SomeNumber)
doSomething;
else
continue;
}[/code:1d68ndsn]
Thanks!