We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I want to make it visible at the stage counting up the some arrays...
I mean..for example
int[] array = {1245, 1260, 1280}
then I want to show 1245,1246,1247 ....1260 not just 1245, 1260, 1280...
Someone plz help me ; (
Answers
use for-loop to loop over the array (up to length-1)
use then 2 vars and read the value of the array in the 1st var currentValue
use while() to loop until the value of the array (index+1) is reached
use text() to show the number currentValue
increase currentValue
then while loop is quit, for-loop continues
here
this was more difficult than expected and I had to change the initial idea...
;-)