We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi,
tried some variations of noLoop() and reddraw() but still one text is overwritten by new one. I would like to to have a clean write of the new text. What is wrong with that code
`void setup() {
size(640, 360, P3D);
noSmooth();
noLoop();
}
void draw() {
background(102);
drawType(width * 0.75);
}
void drawType(float x) {
text("One Text", x, 210);
delay(10000);
redraw();
text("Second Word", x, 210);
}`
?
Thanks for any hint
Answers
Also there are great articles on the subject:
I display images in sequence but I see only the last one. Why?
How do I display a message for a few seconds?
thanks a lot, did work nicely ! However will have to read the links you added a view times again to understand it