Hi there
I'm trying to check if an array area exists, e.g.
if (array[99][99].exists){ ....}
THis doesn't work... e.g. It gives me an arrayIndexOutOfBounds error.
What I need for it to do is just ignore and carry on the code. If it finds an arrayIndexOutOfBounds, fine, carry on, just ignore.
Try/catch may not work in this situation. There are multiple conditions, some true and some false, that it must go through, so if if using a try/catch, it will get out of the forloop which checks...
Please help.