JavaFX Composer FXD Tutorial 0
In this tutorial you will learn how to create an application using existing resources. I will start with an existing NetBeans TV logo in eps format.
In this tutorial you will learn how to create an application using existing resources. I will start with an existing NetBeans TV logo in eps format.
In JavaFX 1.3 a lot of work has gone into ListView, and extracting out the base virtualization engine (the secret sauce to high performance lists) such that it is able to be used in controls such as TreeView and TableView.
Last week on the 22nd April 2010, JavaFX 1.3 Release was released to the general public. I immediately scanned the release notes and was intrigued by the 3D capabilities. Congratulations to the SDK team for listening to criticism and improvements, mine included. I suggested in an AudioBoo that we needed a Capabilities API for the platform. It is now included there.
avaFX is a rich client platform for building cross-device applications and content. Designed to enable easy creation and deployment of rich internet applications (RIAs) with immersive media and content, the JavaFX platform ensures that RIAs look and behave consistently across diverse form factors and devices. We will see difference between javaFX and Adobe Flex
I finally made some progress on FEST-JavaFX!
The main obstacle was to find a way to look up UI controls on any JavaFX UI. The problem was that all this time I’ve been working with the wrong node hierarchy, Scenario, instead of the JavaFX one! It was impossible to figure out which node corresponds to a control. JavaFX nodes get compiled into Scenegraph nodes, but those compiled nodes do not have any information about the original JavaFX nodes. In addition, Scenario is a implementation detail that can change at any time.
A JavaFX application can get and display data from a RESTful Web Service or other remote data source. To simplify access to data coming from various sources in various formats, JavaFX Composer unifies the data format on the client side so that it is easier for you to use a remote data source.
One of the really neat things about the JavaFX ListView control is the Cell API, and the ability to have dynamically variable row heights, without sacrificing performance or scalability. To accomplish this, we’ll write a custom Cell factory which…
The nice demo created by Mark Anro Silva has a quite slow UI. This blog posts shows how the UI performance can be increased dramatically…
The template for creating a custom control in JavaFX has been upgraded to reflect the changes introduced in 1.3.
I strongly recommend to use that template, because it is necessary to implement several not-so-obvious things for fully functional and well-behaving controls.
Dean Iverson did a great write-up on the new Region and CSS support in JavaFX 1.3. He spent the past few days reverse engineering how it works so you don’t have to… definitely worth the read!