import com.sun.glass.ui.Robot; import java.awt.Color; import java.awt.Dimension; import java.awt.Point; import java.awt.event.MouseEvent; import java.util.concurrent.Semaphore; import javafx.application.Application; import javafx.application.Platform; import javafx.embed.swing.SwingNode; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.layout.StackPane; import javafx.stage.Stage; import javafx.stage.WindowEvent; import javax.swing.JInternalFrame; import javax.swing.JPanel; import javax.swing.SwingUtilities; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Andrei Eremeev */ public class FXTest extends Application { private JInternalFrame frame; @Override public void start(final Stage stage) throws Exception { SwingNode swingNode = new SwingNode(); init(swingNode); StackPane pane = new StackPane(); pane.getChildren().add(swingNode); Scene scene = new Scene(pane, 300, 300); stage.setScene(scene); stage.setX(150); stage.setY(150); stage.show(); } public static void main(String[] args) { launch(args); } private void init(final SwingNode node) throws Exception { final JPanel panel = new JPanel(); SwingUtilities.invokeLater(new Runnable() { @Override public void run() { frame = new JInternalFrame("frame", true); frame.setBounds(0, 0, 100, 100); frame.setBackground(Color.RED); panel.setLayout(null); panel.add(frame); frame.setVisible(true); node.setContent(panel); } }); } }