This is a short tutorial about some JavaFX elements like ellipses, circles, effects and gradients. In the first code we are creating a frame with…
This is a short tutorial about some JavaFX elements like ellipses, circles, effects and gradients. In the first code we are creating a frame with…
Here is a problem I faced those days while programming with JavaFX. When you perform a click in a JavaFX area, mouse events are called…
Right in this moment you can choose between three options to develop JavaFX: Use the old version of JavaFX, interpreted. Not recommended. Use the JavaFX…
Creative Commons image from Flickr. From days 15 to 20 from April, I’ll be in Porto Alegre. I’ll participate on FISL (an old dream) with…
More books to my shelf. Ruby On Rails, Executando. Desenvolvimento Rápido para a Web. Bruce A. Tate & Curt Hibbs. Ruby, conhecendo a linguagem. Eustáqui…
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…