An side-scrolling game attempt. I used two images, this mountain background made with Gimp (xcf sources here) and that ship above made with Inkscape (svg…
An side-scrolling game attempt. I used two images, this mountain background made with Gimp (xcf sources here) and that ship above made with Inkscape (svg…
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:…
Disclaimer: from now on I will occasionally post in English too.
A first release of an Wheel of Fortune made with JavaFX. There’s still has a lot of bugs but is already usable. Let’s say that version is 0.8. 🙂
Lembra daquele nosso gato em Java FX? Agora ele move os olhos com cliques em botões. Código fonte: import javafx.ui.canvas.*; import javafx.ui.*; class Cat extends…
Alguns exemplo básicos de JavaFX usando a construção de interfaces de forma declarativa. Para testa-los eu recomendo o JavaFX Pad ou o plugin JavaFX para…
Meu primeiro desenho com JavaFX. Código-fonte: import javafx.ui.canvas.*; import javafx.ui.*; Canvas { content: [ // cat head Ellipse { cx:200, cy:100, radiusX:100, radiusY:50, fill:black },…