We are about to switch to a new forum software. Until then we have removed the registration on this forum.
My head just hurts. If you do this it doesn't work right it just stuck until all letters are displayed and if you remove "while" it still doesn't work also x=1; is done so to test if in second draw re-run it works. You can actually fix this if you like moving entire app to side cuz when mouse holding app touches side of screen app works for that moment and it can't be still.
Answers
https://forum.processing.org/two/discussion/8085/i-display-images-in-sequence-but-i-see-only-the-last-one-why
all drawing operations done within draw() are cumulated, and only the end result is displayed when draw() exits. So, actually, you paint each image in sequence, one over the others, then you display the end result, the last image.
Moral of the story don't try shortcuts just go longer way (>_<). Also thanks mate.
Delay is not recommended anyway
Instead build a timer and increase x when the is met (every second)
@StereoFrog -- Or use the built-in frameRate() to set the draw speed and the built-in frameCount as the timer.
You could use an array of chars or a String to do this:
@jeremydouglass @Chrisir Thanks those are great answers they really helped me =D>
;-)