SubstanceLookAndFeel.COLORIZATION_FACTOR, Double.valueOf(1.0));
this.add(instructional, BorderLayout.NORTH);
// create a looping animation to change the label foreground
// from black to blue and back to draw some attention.
Timeline instructionalTimeline = new Timeline(instructional);
instructionalTimeline.addPropertyToInterpolate("foreground",
Color.black, Color.blue);
instructionalTimeline.setDuration(1000);
instructionalTimeline.playLoop(RepeatBehavior.REVERSE);
FormLayout lm = new FormLayout("right:pref, 4dlu, fill:pref:grow", "");
DefaultFormBuilder builder = new DefaultFormBuilder(lm,
new ScrollablePanel());