About this siteFeed sources and resources
unknown (71)
2008 November 20 (9)2008 November 19 (3)2008 November 18 (2)2008 November 17 (5)2008 November 16 (1)2008 November 14 (3)2008 November 13 (3)2008 November 12 (3)2008 November 11 (10)2008 November 10 (6)2008 November 09 (1)2008 November 08 (4)2008 November 07 (2)2008 November 06 (6)2008 November 05 (3)2008 November 04 (3)2008 November 01 (1)2008 November 03 (1)
2008 October 31 (2)2008 October 29 (2)2008 October 28 (3)2008 October 27 (4)2008 October 26 (1)2008 October 24 (2)2008 October 22 (4)2008 October 21 (4)2008 October 20 (5)2008 October 17 (2)2008 October 16 (2)2008 October 15 (3)2008 October 14 (2)2008 October 13 (2)2008 October 11 (1)2008 October 10 (2)2008 October 08 (2)2008 October 07 (2)2008 October 06 (2)2008 October 03 (2)2008 October 01 (2)2008 October 23 (1)2008 October 09 (1)2008 October 02 (1)
2008 September 26 (2)2008 September 25 (3)2008 September 24 (2)2008 September 21 (2)2008 September 16 (1)2008 September 13 (1)2008 September 12 (9)2008 September 11 (10)2008 September 10 (6)2008 September 09 (7)2008 September 08 (5)2008 September 07 (2)2008 September 06 (3)2008 September 05 (6)2008 September 04 (7)2008 September 03 (5)2008 September 02 (4)2008 September 01 (6)2008 September 30 (1)2008 September 29 (1)2008 September 23 (1)2008 September 22 (1)2008 September 19 (1)2008 September 18 (1)
2008 August 31 (4)2008 August 30 (2)2008 August 29 (9)2008 August 28 (6)2008 August 27 (21)2008 August 26 (9)2008 August 25 (7)2008 August 24 (3)2008 August 23 (2)2008 August 22 (8)2008 August 21 (18)2008 August 20 (14)2008 August 19 (21)2008 August 18 (16)2008 August 17 (8)2008 August 16 (9)2008 August 15 (6)2008 August 14 (10)2008 August 13 (13)2008 August 12 (12)2008 August 11 (13)2008 August 10 (6)2008 August 09 (6)2008 August 08 (7)2008 August 07 (15)2008 August 06 (15)2008 August 05 (24)2008 August 04 (65)2008 August 03 (19)2008 August 02 (23)2008 August 01 (62)
2008 July 31 (87)2008 July 30 (12)2008 July 29 (10)2008 July 28 (4)2008 July 27 (13)2008 July 26 (3)2008 July 25 (3)2008 July 24 (2)2008 July 23 (4)2008 July 22 (11)2008 July 21 (1)2008 July 20 (20)2008 July 19 (3)2008 July 18 (3)2008 July 17 (5)2008 July 16 (6)2008 July 15 (14)2008 July 14 (8)2008 July 13 (2)2008 July 12 (2)2008 July 11 (5)2008 July 10 (17)2008 July 09 (1)2008 July 08 (6)2008 July 07 (11)2008 July 06 (1)2008 July 05 (4)2008 July 03 (5)2008 July 02 (3)2008 July 01 (14)

JavaFX Home  (www.javafx.com)  

JavaFX Technology - Reference  (java.sun.com)  

JavaFX Home  (www.javafx.com)  

Creating A Simple JavaFX Application Using NetBeans IDE  (java.sun.com)  

Learning Curve Journal, Part 4: Accessing a Web Service  (java.sun.com)  

Learning Curve Journal, Part 3: JavaFX Script Functions  (java.sun.com)  

Learning Curve Journal: Part 2, JavaFX Script - Declarative User Interfaces  (java.sun.com)  

Learning Curve Journal: Part 1, Exploring JavaFX Script  (java.sun.com)  

Sun Releases JavaFX Preview  (www.sun.com)  

2008 JavaOne Conference  (java.sun.com)  

JavaFX Home  (www.javafx.com)  

JavaFX SDK Preview is here!  (blogs.sun.com)  

Get JavaFX SDK

Sun has just released the Preview of the JavaFX SDK. This release targets developers and scripters, is available for Windows and Mac and has the following content:

• The JavaFX compiler and runtime (2D graphics, media libraries)
• Command-line tools (javafx, javafxc and javafxdoc)
• NetBeans plugin (build, preview, debug)
• Project Nile: add-on to Adobe tools to product JavaFX
• Documentation, tutorial, samples

This is all available in an all-in-one download and provides more content than the community openjfx.com site.

The relationship to server-side computing is in the way JavaFX clients can interact with Java-based back-ends (including with client-side dependency injection for things like web services or EJB references). Get previous coverage on JavaFX by following the javafx tag.

JavaFX Too Late...But Who Cares - Gregg Bolinger  (www.greggbolinger.com)  

Gregg Bolinger

Learning Curve Journal, Part 1: Exploring JavaFX Script  (blogs.sun.com)  

By John O'Conner, August 2007; revised and updated by Ed Ort, July 2008

JavaFX Script is a new scripting language that developers can use to create dynamic graphical content. On the desktop, the language provides libraries to help you use the Swing user interface (UI) toolkit and Java 2D APIs conveniently. It doesn't replace either Swing or Java 2D; the goal is to make those APIs more accessible to rich content developers. In other environments, such as mobile systems, JavaFX Script makes use of user interface technologies other than Swing. JavaFX Script enables you to write visually rich applications that run across platforms and operating environments.

The language provides both declarative and procedural syntax. You can declaratively create a rich user interface, and then you can add event-handling routines and operations.

However, most of us have to start more modestly, and that's the purpose of this article. Its goal is to show you how to get started with JavaFX Script. First, you'll need the following:

Setting Up the Java Platform

As a developer, you no doubt have a JDK on your system. However, if you haven't updated your system in a while, make sure you have Java SE 6. The Learning Curve Journal focuses on the compiler-based version of JavaFX Script and its support in NetBeans IDE 6.1. To install and use NetBeans IDE 6.1 with JavaFX technology, it is recommended that you install the latest level of Java SE 6 on your system, which currently is Java SE 6 Update 10 Beta. Download the latest JDK from the Java SE Downloads page of the Sun Developer Network. If you use Mac OS X, you can get Apple's latest release of the Java platform development kit, which currently is Java for Mac OS X 10.5, Update 1, directly from their Java section of the Apple Developer Connection.

Going to the Source

When you experiment with a new environment or language, you're going to hit dead ends and difficult places. That's part of the deal we all make when we adopt leading-edge technology. However, to smooth the learning curve, good documentation and examples are absolutely critical. Along with the JavaFX Technology hub of the Sun Developer Network, the javafx.com and Project OpenJFX web sites provide demo resources and the latest documentation you need to get accurate information.

Some of you will want to start programming immediately, barely reading a word of the language reference. Others of you will read everything you can before actually using JavaFX Script. Even if you're the type that dives in right away, you have to start with some sort of language specification or tutorial. Before you can scribble out the prototypical "Hello, world" example, you need to know some basic language syntax. The documents on the JavaFX Reference page are a good place to start. You can find links there to reference documents such as the The JavaFX Script Programming Language Reference as well as links to many articles and tutorials such as Getting Started With JavaFX Technology and Creating A Simple JavaFX Application Using NetBeans IDE.

Creating a JavaFX Application

After you've read at least some of the language reference document, it's time to build a simple JavaFX application. Although you can build and run a JavaFX application manually from a command line, let's do it using NetBeans IDE 6.1, which has many features designed to simplify developing applications. You will need to install the JavaFX plugin for NetBeans.

Read the rest of this tutorial . . .

********************************

Get Started with Java Programming!

Now Facebook users have a page to lead them to content that can help them learn Java programming. Log in to your Facebook account and Become a Fan of  Get Started with Java Programming!

********************************

New to Java Programming Center

The New to Java Programming Center helps developers who are new to the Java platform find what they need to set up their system, understand the various technologies, and create applications for the desktop, web, and devices.


Part 1 of the series gets you started with a simple JavaFX program, that is, a simple program written in the JavaFX Script language.

widgetfx - Google Code  (code.google.com)  

Learning Curve Journal: Part 1, Exploring JavaFX Script  (java.sun.com)  

Creating GUIs Using JavaFX Script  (java.sun.com)  

Learning Curve Journal: Part 2, JavaFX Script - Declarative User Interfaces  (java.sun.com)  

Learning Curve Journal: Part 1, Exploring JavaFX Script  (java.sun.com)  

Using the Scene Graph to Present Visual Objects in JavaFX Script  (java.sun.com)  

Native video codecs and Flash content with JMC : Pushing Pixels  (www.pushing-pixels.org)  

JMC - Java media components in java used to play FLV files

The Art of Software Development  (sinnema313.wordpress.com)  

JavaFX Home  (www.javafx.com)  

JavaFX Technology At a Glance  (java.sun.com)  

Hands On With JavaFX - First Impressions - InsideRIA  (www.insideria.com)  

Silveira's Blog :: Entries :: JavaFX, creating a sphere with shadow  (silveiraneto.net)  

Mark J. Wielaard " The JavaFX Trap  (gnu.wildebeest.org)  

JavaFX=proprietary=bad?

Mark J. Wielaard " The JavaFX Trap  (gnu.wildebeest.org)  

JavaFX=proprietary=bad?

This note's for you " Blog Archive " JavaFX?  (kennke.org)  

Yes, tools are important, that's why Sun is working to make tools for JavaFX

This note's for you " Blog Archive " JavaFX?  (kennke.org)  

Yes, tools are important, that's why Sun is working to make tools for JavaFX

Richard Leggett on New Media - JavaFX.com is DHTML Heaven  (richardleggett.co.uk)  

Richard Leggett on New Media - JavaFX.com is DHTML Heaven  (richardleggett.co.uk)  

NetBeans helps you get started with JavaFX - Octavian Tanase's Weblog  (blogs.sun.com)  

JavaFX DOA RIA  (jameswilliams.be)  

Um, where's the beef?

JavaFX DOA RIA  (jameswilliams.be)  

Um, where's the beef?

JavaFX Preview Released: When Will the Madness Stop? | Javalobby  (java.dzone.com)  

JavaFX Preview Released: When Will the Madness Stop? | Javalobby  (java.dzone.com)  

Sun Delivers JavaFX Preview  (www.eweek.com)  

widgetfx - Google Code  (code.google.com)  

JavaFX SDK Preview - first impressions - Teppefall Labs  (labs.teppefall.com)  

JavaFX Technology At a Glance  (java.sun.com)  

JavaFX API Docs  (javafx.com)  

The JavaFX_ Script Programming Language Reference (Draft)  (javafx.com)  

JavaFX Home  (www.javafx.com)  

"Get started with JavaFX Preview SDK", 31-Jul-2008, javafx.com  (javafx.com)  

JavaFX SDK Preview: Sun hat die Vorschauversion des JavaFX SDKs f?r Mac OS X und Windows ver?ffentlicht. Das JavaFX SDK...

"Sun Microsystems Releases JavaFX Preview", 31-Jul-2008, sun.com  (www.sun.com)  

JavaFX SDK Preview: Offizielle Meldung von Sun zur Ver?ffentlichung des JavaFX SDK Previews.

Cindy Castillo, Alexandr Scherbatiy, "Creating A Simple JavaFX Application Using NetBeans IDE", Jul-2008, java.sun.com  (java.sun.com)  

Tutorial: Einf?hrung in die Nutzung der NetBeans IDE zur JavaFX Script Programmierung anhand eines Uhr Applets.

Christine Dorffi, "JavaFX Learning Curve Journal Updates", 31-Jul-2008, Mobility Tech Tips  (blogs.sun.com)  

Tutorial: Die 4-teilige Artikelserie "JavaFX Learning Curve" von John O'Conner wurde f?r den JavaFX Compiler aktualisiert.

"JavaFX Blog", 31-Jul-2008, blogs.sun.com  (blogs.sun.com)  

Blog: Blogs auf sun.com speziell zu JavaFX. Mit den ersten zwei Eintr?gen von Joshua Marinacci und Jacob Lehrbaum rund um das SDK Preview.

"Developer Forums: JavaFX", 31-Jul-2008, forums.sun.com  (forums.sun.com)  

Forum: Web-Foren f?r Designer und Entwickler zu JavaFX auf sun.com.

Josh Marinacci, "JavaFX - just for Java guys?", 31-Jul-2008, Tim Anderson's ITWriting  (www.itwriting.com)  

Marketing: Zitat von Josh Marinacci im obigen Kommentar: "Of course the best download is the one you don't have to make. We have deals with 9 of the top 10 PC OEMs to get the latest Java pre-installed."

Paulo Sergio, "Re: javafx sdk does not work on linux?", 31-Jul-2008, openjfx users ML  (openjfx.dev.java.net)  

Linux: Diskussion mit Informationen zum Status von JavaFX auf Linux: James L. Weaver, Joshua Marinacci. (Thread)

Brian Goetz, "Requesting developer roles in JavaFX project", 30-Jul-2008, openjfx compiler-dev ML  (openjfx-compiler.dev.java.net)  

JavaFX: Informationen, um beim Open Source Bereich von JavaFX selbst als Entwickler t?tig zu werden. (Thread)

"WidgetFX", Jul-2008, Google Code  (code.google.com)  

Widgets: WidgetFX - eine Desktop Widget Platform in JavaFX als Open Source-Projekt basierend auf dem AB5k aka Glossitope-System von Joshua Marinacci f?r Java, das er auf der JavaOne 2007 vorgestellt hatte.

Sandeep Konchady, "Simple media player using JavaFX SDK Preview Release", 31-Jul-2008, blogs.sun.com  (blogs.sun.com)  

Medien: Beispiel eines einfachen Medienplayers mit dem JavaFX SDK Preview.

Joshua Marinacci, "Re: Draggable objects", 20-Jul-2008, openjfx users ML  (openjfx.dev.java.net)  

Dragging: Zwei Beispiele f?r das Verschieben von Grafiken, die onMousePressed() und onMouseDragged() ?berschreiben.

James Weaver, "Getting Decked: Another JavaFX Custom Node", 28-Jul-2008, learnjavafx.typepad.com  (learnjavafx.typepad.com)  

GUI: DeckNode - ein CustomNode-Beispiel zur wechselnden Anzeige verschiedener Nodes an einem Platz inklusive Java Web Start.

James Weaver, "Progress Indicator: Creating a JavaFX Custom Node and Binding to a Model", 30-Jul-2008, learnjavafx.typepad.com  (learnjavafx.typepad.com)  

GUI: Grafisch ansprechende Fortschrittsanzeige als CustomNode inklusive Bildschirmfoto und Java Web Start.

Silveira Neto, "JavaFX, creating a sphere with shadow", 31-Jul-2008, silveiraneto.net  (silveiraneto.net)  

Grafik: N?tzliches Schritt-f?r-Schritt-Beispiel zum Zeichnen einer Kugel inklusive Schatten mit JavaFX Script.

JavaFX SDK Preview ??????  (blogs.sun.com)  

??: JavaFX SDK Preview is here!

Get JavaFX SDK

Sun ????? JavaFX SDK ????????????????? ??????????????????????????????Windows ? Mac ???????????????:

• JavaFX ??????????? (2D ?????????????)
• ?????????? (javafx?javafxc?javafxdoc)
• NetBeans ????? (??????????????)
• ?????? Nile: JavaFX ???????? Adobe ????????
• ???????????????????

??????????????????????????? openjfx.com ???????????????????????

??????????????????????Java ??????????(Web ???? ? EJB ???????????????? ??????????????? ???) ???????????????? JavaFX ????????????????? javafx ??? JavaFX ????????????????

JavaFX Home  (www.javafx.com)  

Nun hat Sun unter javafx.com eine Vorschau ver?ffentlicht... ist NetBeans 6.1 mit einem JavaFX-Plug-in enthalten. Mit Project Nile lassen sich...

JavaFX Home  (www.javafx.com)