Hi,
I'm trying to get a bunch of data that I'm creating in flash to be redrawn with the MING library, this isn't the problem though.
I want to be able to make flash parse a dataset like:
5, 25, 25, 255, 0, 0, 0; 5, 10, 5, 255, 0, 0, 0; 5, 30, 50, 255, 0, 0, 0;
I have it so that for each ", " it writes a new var...
list($size,$x,$y,$r,$g,$b)=split(",", $data);
But I also want it to loop all the stuff within, so many times for each " ; " in the code
so that way it knows that after each ; there will be a new object.
How would I go about this?
Thanks for reading in advance.
Cheers