On Thursday, April 26, 2012 3:29:30 PM UTC-7, Peter Cheung wrote:
http://www.youtube.com/watch?v=p6PzTWYgezM
how to make swing [sic] timer run faster?
I use swing [sic] timer to draw the animation, but it runs slowly.
Please provide code.
Best is to prepare a Simple, Self-Contained Compilable Example.
http://sscce.org/
Unless you show us the code, here in the newsgroup, in an example that isolates the issue, it can be difficult to diagnose your problem.
I would need to see how you're using the timer now to see what might be wrong. It could be a concurrency issue, or you might be running other things on the Event Dispatch Thread (EDT) that you shouldn't, there might be other demands on the system (e.g., from the video recording software), or you simply might not have enough computing power to run it faster.
The solutions for those issues, if any of them pertain, is to make your code thread-safe, take things off the EDT, shut down other software and services while you record your video, or use a faster computer, respectively.
--
Lew
http://code.google.com/p/peter-swing/source/browse/trunk/src/com/peterswing/advancedswing/outlookbar/OutlookBarLayout.java
I already set it to 1ms, but it still runs slowly.
So the animation is not smooth.