Re: javafx frame on SWT composite + eclipse!!



Use a AWT Panel in between the SWT_AWT frame and FX's frame/
rootpane .This will solve the problem.
There was some site stating to use the Panel.

var frame:<<java.awt.Frame>> =
SWT_AWT.new_Frame(compositeobj:Composite);
var panel:<<java.awt.Panel>> = new Panel();
var rootpane = new RootPane();
panel.add(rootpane.getComponent());
frame.add(panel);

where rootpane is the FX container.Do try.
.