Does thread.sleep() pause keylistener?
I have an applet that I want to pause for 4 seconds while something is displayed. When I try using thread.sleep() it seems to pause the thread... but it doesn't pause the key listener and what ever was pressed during the pause will be executed after the pause is over. Is there a way that I can stop the key listener while the thread is paused?

