I downloaded the libraries from the site, connected them through Project Structure->Libraries
, wrote the code and pops up
Exception in thread "java.lang.NoClassDefFoundError: org / pushingpixels / trident / ease / TimelineEase, tell me what to do? (Code below)
import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import java.io.*; import java.util.ArrayList; import org.pushingpixels.substance.api.*; import org.pushingpixels.substance.api.skin.*; /** * Created by Expo1on on 28.07.2014. */ public class Redactor { JFrame f=new JFrame(); static JTabbedPane tp=new JTabbedPane(); static int i=1; public static void main(String[] args) { Redactor r=new Redactor(); setupLAF(); r.go(); } public static void setupLAF() { try { SubstanceLookAndFeel.setSkin(new GraphiteGlassSkin()); SubstanceLookAndFeel.setSkin("org.pushingpixels.substance.api.skin.GraphiteGlassSkin"); UIManager.setLookAndFeel(new SubstanceGraphiteGlassLookAndFeel()); UIManager.setLookAndFeel("org.pushingpixels.substance.api.skin.SubstanceGraphiteGlassLookAndFeel"); } catch (Exception ex) {} }