JavaFX Applets Meet Google Chrome
In the JFX Custom Nodes category of this blog, graphics designer Mark Dingman of Malden Labs and I have been collaborating on an imaginary Sound Beans application. This category contains a growing series of posts in which we are demonstrating how to create JavaFX UI custom controls. This series also provide a case study in how a graphics designer and an application developer can work together effectively in developing JavaFX applications. Today I'd like to highlight the recent Google Chrome browser announcement by showing you how to create and run a JavaFX applet in Chrome. Here's a screenshot of the TableNode example from an earlier post running as a JavaFX applet in Chrome:
To try this out, first obtain Google Chrome and install it. Then obtain Java SE 6 Update 10 and install it as well. By the way, installing Java SE 6 update 10 will enable this JavaFX applet to run on Firefox 3 and Internet Explorer as well. Go ahead and run this example, being sure to scroll the custom TableNode control and to click on its rows. Also, select the Burn icon and move the slider to demonstrate the custom ProgressNode control.
Looking at the Code
In addition to the ButtonNode.fx, MenuNode.fx, DeckNode.fx, ProgressNode.fx and TableNode.fx files from previous posts in this series, you'll need the following files:
TableNodeExampleApplet.fx:
/*
* TableNodeExampleApplet.fx -
* An example of using the TableNode custom node in an Applet. It also
* demonstrates the ProgressNode, DeckNode, MenuNode and ButtonNode
* custom nodes
*
* Developed 2008 by James L. Weaver (jim.weaver at lat-inc.com)
* to demonstrate how to create custom nodes and applets in JavaFX
*/
package com.javafxpert.table_node_example.ui;
import javafx.application.*;
import javafx.ext.swing.*;
import javafx.scene.*;
import javafx.scene.geometry.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.scene.paint.*;
import javafx.scene.text.*;
import javafx.scene.transform.*;
import java.lang.Object;
import java.lang.System;
import com.javafxpert.custom_node.DeckNode;
import com.javafxpert.custom_node.TableNode;
import com.javafxpert.custom_node.ProgressNode;
import com.javafxpert.custom_node.ButtonNode;
import com.javafxpert.custom_node.MenuNode;
import com.javafxpert.table_node_example.model.TableNodeExampleModel;
var deckRef:DeckNode;
Application {
var model = TableNodeExampleModel.getInstance();
var stageRef:Stage;
var menuRef:MenuNode;
stage:
stageRef = Stage {
fill: Color.BLACK
content: [
deckRef = DeckNode {
fadeInDur: 700ms
content: [
// The "Splash" page
Group {
var vboxRef:VBox;
var splashFont =
Font {
name: "Sans serif"
style: FontStyle.BOLD
size: 12
};
id: "Splash"
content: [
ImageView {
image:
Image {
url: "{__DIR__}images/splashpage.png"
}
},
vboxRef = VBox {
translateX: bind stageRef.width - vboxRef.getWidth() - 10
translateY: 215
spacing: 1
content: [
Text {
content: "A Fictitious Audio Application that Demonstrates"
fill: Color.WHITE
font: splashFont
},
Text {
content: "Creating JavaFX Custom Nodes"
fill: Color.WHITE
font: splashFont
},
Text {
content: "Application Developer: Jim Weaver"
fill: Color.WHITE
font: splashFont
},
Text {
content: "Graphics Designer: Mark Dingman"
fill: Color.WHITE
font: splashFont
},
]
}
]
},
// The "Play" page
VBox {
var tableNode:TableNode
id: "Play"
spacing: 4
content: [
Group {
content: [
ImageView {
image:
Image {
url: "{__DIR__}images/playing_currently.png"
}
},
Text {
textOrigin: TextOrigin.TOP
content: bind "{tableNode.selectedIndex}"
font: Font {
size: 24
}
}
]
},
tableNode = TableNode {
height: 135
rowHeight: 25
rowSpacing: 2
columnWidths: [150, 247, 25, 70]
tableFill: Color.BLACK
rowFill: Color.#1c1c1c
selectedRowFill: Color.#2d2d2d
selectedIndex: -1
vertScrollbarWidth: 20
vertScrollbarFill: LinearGradient {
startX: 0.0
startY: 0.0
endX: 1.0
endY: 0.0
stops: [
Stop {
offset: 0.0
color: Color.#0b0b0b
},
Stop {
offset: 1.0
color: Color.#343434
}
]
}
vertScrollbarThumbFill: Color.#efefef
content: bind
for (obj in model.playlistObjects) {
if (obj instanceof String)
Text {
textOrigin: TextOrigin.TOP
fill: Color.#b7b7b7
content: obj as String
font:
Font {
size: 11
}
}
else if (obj instanceof Image)
ImageView {
image: obj as Image
}
else
null
}
onSelectionChange:
function(row:Integer):Void {
System.out.println("Table row #{row} selected");
}
}
]
},
// The "Burn" page
Group {
var vboxRef:VBox;
id: "Burn"
content: [
vboxRef = VBox {
translateX: bind stageRef.width / 2 - vboxRef.getWidth() / 2
translateY: bind stageRef.height / 2 - vboxRef.getHeight() / 2
spacing: 15
content: [
Text {
textOrigin: TextOrigin.TOP
content: "Burning custom playlist to CD..."
font:
Font {
name: "Sans serif"
style: FontStyle.PLAIN
size: 22
}
fill: Color.#d3d3d3
},
ProgressNode {
width: 430
height: 15
progressPercentColor: Color.#bfdfef
progressTextColor: Color.#0c1515
progressText: bind "{model.remainingBurnTime} Remaining"
progressFill:
LinearGradient {
startX: 0.0
startY: 0.0
endX: 0.0
endY: 1.0
stops: [
Stop {
offset: 0.0
color: Color.#00c0ff
},
Stop {
offset: 0.20
color: Color.#00acea
},
Stop {
offset: 1.0
color: Color.#0070ae
},
]
}
barFill:
LinearGradient {
startX: 0.0
startY: 0.0
endX: 0.0
endY: 1.0
stops: [
Stop {
offset: 0.0
color: Color.#707070
},
Stop {
offset: 1.0
color: Color.#585858
},
]
}
progress: bind model.burnProgressPercent / 100.0
},
ComponentView {
component:
FlowPanel {
background: Color.BLACK
content: [
Label {
text: "Slide to simulate burn progress:"
foreground: Color.#d3d3d3
},
Slider {
orientation: Orientation.HORIZONTAL
minimum: 0
maximum: 100
value: bind model.burnProgressPercent with inverse
preferredSize: [200, 20]
}
]
}
}
]
}
]
},
// The "Config" page
Group {
id: "Config"
content: [
ImageView {
image:
Image {
url: "{__DIR__}images/config.png"
}
}
]
},
// The "Help" page
Group {
id: "Help"
content: [
ImageView {
image:
Image {
url: "{__DIR__}images/help.png"
}
}
]
}
]
},
menuRef = MenuNode {
translateX: bind stageRef.width / 2 - menuRef.getWidth() / 2
translateY: bind stageRef.height - menuRef.getHeight()
buttons: [
ButtonNode {
title: "Play"
imageURL: "{__DIR__}icons/play.png"
action:
function():Void {
deckRef.visibleNodeId = "Play";
}
},
ButtonNode {
title: "Burn"
imageURL: "{__DIR__}icons/burn.png"
action:
function():Void {
deckRef.visibleNodeId = "Burn";
}
},
ButtonNode {
title: "Config"
imageURL: "{__DIR__}icons/config.png"
action:
function():Void {
deckRef.visibleNodeId = "Config";
}
},
ButtonNode {
title: "Help"
imageURL: "{__DIR__}icons/help.png"
action:
function():Void {
deckRef.visibleNodeId = "Help";
}
},
]
}
]
}
}
Note that the Application class has a stage attribute just as the Frame had in previous examples. Here's the TableNodeExamplePage.html file that you'll open in your browser. The draggable param, by the way, enables that neat "pull the applet out of the browser" trick that I'll show you in a bit:
<html>
<body bgcolor="Black">
<center>
<applet code="javafx.application.Applet" width=500 height=400
archive="javafxrt.jar, Scenario.jar, javafxgui.jar, javafx-swing.jar, TableNodeExample.jar">
<param name="ApplicationClass" value="com.javafxpert.table_node_example.ui.TableNodeExampleApplet"/>
<param name="jnlp_href" value="TableNodeExampleApplet.jnlp"/>
<param name="draggable" value="true">
</applet>
</center>
</body>
</html>
Finally, here's the Java Web Start TableNodeExampleApplet.jnlp file that is used by the HTML file above:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" href="TableNodeExampleApplet.jnlp">
<information>
<title>TableNodeExampleApplet</title>
<vendor>JMentor</vendor>
<description>TableNodeExampleApplet</description>
<description kind="short">TableNodeExampleApplet</description>
<homepage href="http://jmentor.com"/>
<offline-allowed />
</information>
<security>
<all-permissions/>
</security>
<resources>
<property name="jnlp.packEnabled" value="true"/>
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" java-vm-args="-Xmx800m" />
<!--j2se version="1.6+" java-vm-args="-Xmx800m" /-->
<jar href="TableNodeExample.jar" main="true" download="eager"/>
<jar href="Scenario.jar"/>
<jar href="javafxrt.jar"/>
<jar href="javafxgui.jar"/>
<jar href="javafx-swing.jar"/>
</resources>
<applet-desc
name="TableNodeExampleApplet"
main-class="javafx.application.Applet"
width="500"
height="400">
</applet-desc>
</jnlp>
Dragging the Applet out of the Browser and onto the Desktop
As shown in the following screenshot, one of the cool features of Java SE 6 update 10 is that you can drag a Java or JavaFX applet out of the browser and onto the desktop. By default, you press the Alt key while dragging the applet:
Here is our JavaFX Applet living happily on the desktop after the browser has been closed, and the user has selected the Burn page:
Google Chrome will be a Driving Force for RIA
According to Google, Java SE 6 Update 10 is the version that must be used in order to run Java in the Chrome browser. As I've mentioned previously, one of the objectives of Java SE 6 Update 10 is to solve the JRE and Java/JavaFX deployment issues. Because Google Chrome is destined to be a great, cross-platform browser, and because it requires the version of Java that makes rich-client Java/JavaFX programs feasible, this will increase the adoption rate of JavaFX applets and applications.
Thanks Google!
Jim Weaver
JavaFXpert.com






Chroma is not user friendly but loaded faster don't know any more
Posted by: nasirhuq - SEO COMPANY | June 23, 2009 at 08:28 PM
I am from Bangladesh. But when I installed crhroma. The language only shows bangla I want to change this to engligh how can I change this?
Posted by: nasirhuq - SEO COMPANY | June 23, 2009 at 08:25 PM
New offical java plugin2 in opera 10 instead of the rather broken and slow plugin used currently in opera. It would also allow opera to keep up with all the new changes and upgrades coming in for JavaFX. Google Chrome only support the official java plugin2 and not the old bloated official java plugin1 making development much simpler for java.
Posted by: Egy Azziera | March 27, 2009 at 03:53 AM
Hey, Nice post..Astonished....!!!!
Posted by: krishna | December 27, 2008 at 11:50 AM
thank jim will give it a go
Posted by: willis and gambier | December 07, 2008 at 03:48 PM
Im curious since java fx is useing on2 technoligy why dont they just buy them?? there stock is just penny stock
Posted by: patrick | November 11, 2008 at 11:44 PM
Some of the websites mainly related to (Blackjack Probability ,chess and cricket or in the clearer words i say are unworkable in chrome. Some of them take very long period to open. I fed up of this browser and unistalled it. :(
Posted by: Anand125 | October 06, 2008 at 06:06 AM
Thanks. i am learning alot from this site
Posted by: Nirose | October 02, 2008 at 08:39 PM
I tell me boss i can code java and he tell me he pay me more money. Java I like so far.
Posted by: J | September 15, 2008 at 02:58 PM
Google Chrome is so-so for me so far. First it´s really really fast, the tabs are quick as well and run in there own process which is great if a crash happens so you don´t loose all tabs.. on the other hand it has much to few features to configure, especially in terms of security and session-management. But it´s promising. Maybe though they released it a bit TO early.
Of course also thanks for the tutorial.
Posted by: Peter | September 11, 2008 at 11:36 PM
Hi,
I am really enjoing this site, and all the tutorials. First of all thanks. I'm preparing also a set of examples based in all that I have learned for javafx. I setted up an opensource project to leave examples for people that wants to learn more.
Jim, if you could give them a look I will really apretiate it.
you can find some code and preview at evowar dot com.
thanks for these great tutorials.
Posted by: maxtrix | September 10, 2008 at 05:14 PM
Jim, thx. I will try this out.
Posted by: riepi | September 05, 2008 at 01:11 AM
Hello Jim, i wonder if there is a routine how you produce an applet with all related files. In Netbeans i can choose for my main file run applet (following Netbeans help). But there are things like missing. Do you use the command line?
Greetings
Posted by: riepi | September 04, 2008 at 10:42 AM
I find google chrome a very useful and fast browser as comparing to internet explorer and firefox. One thing which I have noticed on my computer is that as I use internet explorer and firefox to explore web pages my windows slow down as I open more pages but using google chrome it doesn’t happened! my windows performance increased using google's new browser CHROME I LOVE IT!
Posted by: Tanveer | September 04, 2008 at 07:25 AM
I had Java 6.10 already installed as I installed Chrome and was very suprised that applets worked.
seems like chrome imporded the plugin2 from firefox... pretty cool
Posted by: mbien | September 04, 2008 at 05:14 AM