<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>indiWiz.com &#187; javafx</title>
	<atom:link href="http://indiwiz.com/tag/javafx/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiwiz.com</link>
	<description>Subhash&#039;s Tech Log</description>
	<lastBuildDate>Sun, 29 Apr 2012 15:11:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>&#8220;Hello World&#8221; (GUI) example in JavaFX</title>
		<link>http://indiwiz.com/2009/06/08/hello-world-gui-example-in-javafx/</link>
		<comments>http://indiwiz.com/2009/06/08/hello-world-gui-example-in-javafx/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:39:29 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[javafx]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=320</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><pre class="brush: java; title: ; notranslate">
package tutorial;

import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.text.Text;
import javafx.scene.text.Font;
import javafx.scene.text.FontWeight;

def WIDTH = 160;
def HEIGHT = 80;
def MESSAGE = &quot;Hello World!&quot;;

Stage {
    title: MESSAGE
    width: WIDTH
    height: HEIGHT
    scene: Scene {
        fill: Color.BLACK
        content:
            Text {
                font: Font.font(&quot;Serif&quot;, FontWeight.BOLD, 16)
                fill: Color.WHITE
                x: 10
                y: 30
                content: MESSAGE
            }
    }
}
</pre>
<div class="shr-publisher-320"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/08/hello-world-gui-example-in-javafx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command line &#8220;Hello World!&#8221; in JavaFX</title>
		<link>http://indiwiz.com/2009/06/04/command-line-hello-world-in-javafx/</link>
		<comments>http://indiwiz.com/2009/06/04/command-line-hello-world-in-javafx/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 06:33:18 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[javafx]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=316</guid>
		<description><![CDATA[Download JavaFX SDK. Install it, and have its bin folder in your PATH. Open your favorite text editor, and write: Save the file as A.fx. To compile the code: $ javafxc A.fx This will generate the class file A.class. To run the application: $ javafx A Isn&#8217;t it simple?]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p><a href="http://javafx.com/downloads/all.jsp">Download JavaFX SDK</a>. Install it, and have its <tt>bin</tt> folder in your PATH.</p>
<p>Open your favorite text editor, and write:</p>
<pre class="brush: java; title: ; notranslate">
println(&quot;Hello World!&quot;);
java.lang.System.exit(0);
</pre>
<p>Save the file as <em>A.fx</em>. To compile the code:</p>
<p><tt>$ javafxc A.fx</tt></p>
<p>This will generate the class file <em>A.class</em>. To run the application:</p>
<p><tt>$ javafx A</tt></p>
<p>Isn&#8217;t it simple?</p>
<div class="shr-publisher-316"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/04/command-line-hello-world-in-javafx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaFX 1.2 for Linux, Mac and Solaris</title>
		<link>http://indiwiz.com/2009/06/04/javafx-12-for-linux-mac-and-solaris/</link>
		<comments>http://indiwiz.com/2009/06/04/javafx-12-for-linux-mac-and-solaris/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 05:11:22 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[javafx]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=313</guid>
		<description><![CDATA[JavaFX is now available for Linux, Solaris and Mac. Finally, now I can try this technology (I use Linux at work and home)!]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p><a href="http://javafx.com/">JavaFX</a> is <a href="http://javafx.com/downloads/all.jsp">now available</a> for Linux, Solaris and Mac. Finally, now I can try this technology (I use Linux at work and home)!</p>
<div class="shr-publisher-313"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/04/javafx-12-for-linux-mac-and-solaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JFXBuilder: JavaFX Visual Design Tool</title>
		<link>http://indiwiz.com/2008/12/19/jfxbuilder-javafx-visual-design-tool/</link>
		<comments>http://indiwiz.com/2008/12/19/jfxbuilder-javafx-visual-design-tool/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 10:07:35 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[javafx]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=102</guid>
		<description><![CDATA[The first design tool for JavaFX is available here: http://www.reportmill.com/jfx/. The product page does not discuss any licensing or pricing detail. The current version is available as WebStart application for free use.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>The first design tool for JavaFX is available here: <a href="http://www.reportmill.com/jfx/">http://www.reportmill.com/jfx/</a>. The product page does not discuss any licensing or pricing detail. The current version is available as WebStart application for free use.</p>
<div class="shr-publisher-102"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2008/12/19/jfxbuilder-javafx-visual-design-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaFX 1.0 Released</title>
		<link>http://indiwiz.com/2008/12/08/javafx-10-released/</link>
		<comments>http://indiwiz.com/2008/12/08/javafx-10-released/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 08:52:49 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[javafx]]></category>
		<category><![CDATA[ria]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=50</guid>
		<description><![CDATA[Get it! But if you are an unfortunate Linux user like me, it is not yet available for our platform]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p><a href="http://javafx.com/downloads/all.jsp">Get it</a>! But if you are an unfortunate Linux user like me, it is <a href="http://blogs.sun.com/javafx/entry/a_word_on_linux_and">not yet available for our platform</a> <img src='http://indiwiz.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<div class="shr-publisher-50"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2008/12/08/javafx-10-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

