|
Quote:
|
|
I know nothing...lol. I am looking for someone to make me a javascript timer that counts down from 10 and when its done, it redirects pages
|
I can help you with the timer.
Let's say that an animation is to be drawn, and a time delay is necessary to it works at the right speed.
private void animate(Graphics g)
{
Thread animate = Thread.currentThread();
try
{
//some animation code
animate.sleep(n); //will pause program by n miliseconds
//some more animation code
}
catch(InterruptedException e)
{
}
}
For your Java applet, it would be similar, except that you will call the method to change pages after the delay is over.