Author Topic: Cycling through all the clients.  (Read 304 times)

How would you cycle through all the clients? I know it would involve a for statement, but what would be after that?

Code: [Select]
for (%c = 0; %c < ClientGroup.getCount(); %c++) {
%client = ClientGroup.getObject(%c);
//doStuff
}