Hello! I'm loading an animated gif into a JButton. Online the gif looks to move at a normal pace. But when I load it in java it looks like the animation is trying to run as quickly as possible! How can I atleast slow it down?
Here is my code:
public Icon getIcon(){
return new ImageIcon(getClass().getResource("images/working.gif"), "Application is running.");
}
Any ideas? Thanks guys 'n gals.