Monthly Archive for July, 2009

KineticScrolling component is open sourced

This is the first release of the KineticScrolling component (version 0.1), we hope you  find it useful. If you find bugs or if you need help to make it work please feel free to mail us.

To get started you need feedjii.jar, which you’ll find under downloads, and the timingframework which you’ll find here.

feedjii-source.jar contains the source code, the java doc is not completely up to date yet.

This is an example of how easy it is to use:

JPanel panel = new JPanel();

// populate the panel with child elements

JKineticScrolling scrolling = new JKineticScrolling(panel, JKineticScrolling.Direction.VERTICAL);
scrolling.setAnimationTime(1300);
scrolling.setSpeed(0.5f);

frame.add(scrolling);

Enjoy!