Twitter is a social network and micro-blogging service that allow you to create and read tweets, 140 characters text-based posts. It’s becoming a popular tool…
Let sandwich.xml be a file at /tmp directory with the content above. We can open it using java.io.FileInputStream and so use it on a javafx.data.pull.PullParser.…
Tile sets are a very simple way to draw scenarios with repeated elements. From simple to complex ones using a very low footprint. First step,…
Following Weiqi Gao’s steps it’s possible to already have a complete JavaFX development environment on Linux. It’s all there for JavaFX development. Code complementation, live…
JavaFX 1.0 is out and there are tons of new cool features, specially for game development.trans I’ll show in this tutorial how to create a…
JavaFX 1.0 is out and is absolutely amazing. You guys did really a great work on it. As I really need a working SDK on…
I continue to develop simple games demos to feel better the strengths and weakness of JavaFX for game development. Preview: [youtube]hR2LiKiBUgE[/youtube] Click to play via…
[youtube]NRwRTHPGg6M[/youtube] In a game I wrote some years ago we handled simple rectangular collisions. Given the points: We did: // returning 0 means collision int…
An simple color picker that can be also used as a gadget. import javafx.ui.*; import javafx.ui.canvas.*; var colors = [red:Color, orange:Color, yellow:Color, green:Color, cyan:Color,blue:Color, magenta:Color,…
Two simple JavaFX code handling onMouseDragged event. import javafx.ui.*; import javafx.ui.canvas.*; Canvas { content: Circle { var x = 50 var y = 50 transform:…