The API fromAWTColor() does not work, as documented in the API doc
http://java.sun.com/javafx/1.2/docs/api/javafx.scene.paint/javafx.scene.paint.Color.html
----------------------------- Code Starts ---------------------------------
import javafx.scene.paint.Color;
var awtColor: java.awt.Color = java.awt.Color.BLUE;
var fxColor: javafx.scene.paint.Color;
fxColor = Color.fromAWTColor(awtColor);
------------------------------ Code Ends ---------------------------------
Unable to compile the code snippet !!