Skip to content

Instantly share code, notes, and snippets.

View Null-Root's full-sized avatar

WatermelonPapaya Null-Root

View GitHub Profile
@jewelsea
jewelsea / JavaFXMusicPlayerLaunchedFromSwing.java
Created March 25, 2013 22:33
Integrating a JavaFX media player into a Swing application (example using a music player, but video would work just as well).
import java.io.*;
import java.util.*;
import javafx.application.Platform;
import javafx.beans.value.*;
import javafx.embed.swing.JFXPanel;
import javafx.event.*;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;