Java Substance look and feel problem

Posted by 2xMax on Stack Overflow See other posts from Stack Overflow or by 2xMax
Published on 2010-05-23T18:36:24Z Indexed on 2010/05/23 18:40 UTC
Read the original article Hit count: 837

Filed under:
|
|

I have a problem with substance look and feel. I'm trying to set Office 2007 LAF as descibed here.

    try
    {
        UIManager.setLookAndFeel("org.pushingpixels.substance.api.skin.SubstanceOfficeBlue2007LookAndFeel");
    }catch(Exception ex)
    {
        System.out.println("Exception:"+ ex.getMessage());
    }

But when i run this code I get exception: Exception in thread "main" java.lang.NoClassDefFoundError: org/pushingpixels/trident/ease/TimelineEase

What am I doing wrong? Anybody have experience with substance LAF?

© Stack Overflow or respective owner

Related posts about java

Related posts about look-and-feel