Examples of DSMovie


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
Copyright © 2018 www.massapi.com. 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.