JavaFX was declared at JavaOne…. in 2007, and we are now sight a advertisement release.
Josh Marinacci of the JavaFX aggroup put unitedly a place with an example that builds the following:

The cipher for this is simply:
-
-
package blogdemo;
-
-
import javafx.scene.*;
-
import javafx.scene.paint.*;
-
import javafx.scene.geometry.*;
-
import javafx.application.*;
-
import javafx.scene.transform.*;
-
import javafx.input.*;
-
import javafx.animation.*;
-
import java.lang.System;
-
-
var seek = 0.0;
-
-
Frame {
-
windowStyle: WindowStyle.TRANSPARENT visible: true
-
width: 400 height: 400
-
stage: Stage {
-
fill: null
-
content: Group {
-
translateX: 100 translateY: 100
-
content: for(i in [0..10]) {
-
// here is the illusion with binding
-
width: 100 height: 100 arcHeight: 10 arcWidth: 10
-
transform: bond [
-
Transform.rotate(-i*36+angle/2,50,50),
-
Transform.translate(angle/4,0),
-
]
-
}
-
}
-
}
-
}
-
}
-
-
var anim = Timeline { keyFrames: [
-
KeyFrame { time: 0s values: seek => -360 tween Interpolator.EASEBOTH },
-
KeyFrame { time: 2s values: seek => 360 tween Interpolator.EASEBOTH },
-
]
-
autoReverse: true
-
repeatCount: Timeline.INDEFINITE
-
};
-
anim.start();
-
And you crapper check discover the application if you hit Java 1.6 installed.
Michael Coté got unitedly with the Sun folks and recorded a demonstrate and interview:
I am fascinated to wager what Sun does with JavaFX, but I hit to adjudge to existence underwhelmed and more agog most what Sun could do with the Java plugin and hit that as a artefact to interact with Ajax applications.
I hunch king Flanagan. I’m making my artefact finished “The Ruby Programming Language” this summer. Its exhaustiveness rattling satisfies. But a decennium ago, my planning Scripture was Flanagan’s “JavaScript: The Definitive Guide”. As I transitioned from a occupation in noesis to a occupation in code, “the Rhino book” taught me everything I necessary to undergo most object-oriented JavaScript, DOM scripting and the another antiquity blocks of today’s Ajax landscape. I’ve bought a hornlike double of apiece of the book’s fivesome editions. It remained, until recently, the exclusive JavaScript aggregation I’d recommend.


