hi,
I need use clock() (or similar but not QT functions!) to do this:
Qt Code:
  1. int done =1
  2. while (done) {
  3. clearScreen()
  4. if (anyPressedKey) done=0;
  5. float posy = clock()/20;
  6. mySetPos(10, posy-40);
  7. print ("HELLO EVERY BODY ");
  8. if (posy>600) posy -= 600;
  9. }
To copy to clipboard, switch view to plain text mode 
I need the text go down and when it reach 600 it wait a while and restart from start point...Any hints?
this code doesn't work. and float posy could reach its high bound.......
Is there a way to reset and/or stop the clock() counter????
Thanks