Do you know the toy Mr. Potato Head? Now meet the Java Potato. [youtube]6NrUdp5XX_o[/youtube] Duke images here from previous dukes I posted and other images…
Do you know the toy Mr. Potato Head? Now meet the Java Potato. [youtube]6NrUdp5XX_o[/youtube] Duke images here from previous dukes I posted and other images…
One thing that I like a lot to do with JavaFX is draggable objects. Due to some recent changes in the JavaFX syntax my old…
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:…