Package de.humatic.dsj

Examples of de.humatic.dsj.DSMovie


      java.awt.FileDialog fd = new java.awt.FileDialog(frame, "select movie", java.awt.FileDialog.LOAD);
      fd.setVisible(true);      
      if (fd.getFile() == null) return;
     
      Container container=tab1;
      movie = new DSMovie(fd.getDirectory()+fd.getFile(), DSFiltergraph.DD7| DSFiltergraph.FRAME_CALLBACK, this);   
      container.add(java.awt.BorderLayout.CENTER, movie.asComponent());     
      container.add(java.awt.BorderLayout.SOUTH, new SwingMovieController(movie));
     
      movie.setLoop(true);
      frame.pack();
View Full Code Here

TOP

Related Classes of de.humatic.dsj.DSMovie

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.