<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: JavaFX 1.3 Top 10</title>
	<atom:link href="http://steveonjava.com/javafx-1-3-top-10/feed/" rel="self" type="application/rss+xml" />
	<link>http://javafx.steveonjava.com/javafx-1-3-top-10/</link>
	<description>Hacking Java, JavaFX, and Flash with Agility</description>
	<lastBuildDate>Wed, 28 Dec 2011 11:38:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: dramil dodeja</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-28155</link>
		<dc:creator>dramil dodeja</dc:creator>
		<pubDate>Mon, 03 Jan 2011 10:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-28155</guid>
		<description>Hi Steve,

Currently I am beginner to Java FX and so far doing good with the basic implementations of it.

I feel like becoming an expert in Java FX will be an great add on in my java j2ee career. Can you please share your exp or give me an suggestion how should I move on to be an expert in Java FX?

______________
Dramil Dodeja
http://www.facebook.com/people/Dramil-Dodeja/824274757
http://www.linkedin.com/in/dramilmdodeja
https://sites.google.com/site/dramildodeja/</description>
		<content:encoded><![CDATA[<p>Hi Steve,</p>
<p>Currently I am beginner to Java FX and so far doing good with the basic implementations of it.</p>
<p>I feel like becoming an expert in Java FX will be an great add on in my java j2ee career. Can you please share your exp or give me an suggestion how should I move on to be an expert in Java FX?</p>
<p>______________<br />
Dramil Dodeja<br />
<a href="http://www.facebook.com/people/Dramil-Dodeja/824274757" rel="nofollow">http://www.facebook.com/people/Dramil-Dodeja/824274757</a><br />
<a href="http://www.linkedin.com/in/dramilmdodeja" rel="nofollow">http://www.linkedin.com/in/dramilmdodeja</a><br />
<a href="https://sites.google.com/site/dramildodeja/" rel="nofollow">https://sites.google.com/site/dramildodeja/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steveonjava</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12537</link>
		<dc:creator>steveonjava</dc:creator>
		<pubDate>Fri, 07 May 2010 09:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12537</guid>
		<description>Jose,

Good catch.  It looks like Amy had to take out the rows accelerator function, which was on GridLayoutInfo.

The docs should probably be updated to show an example of the longer syntax you described in your fix.  I will mention something to Amy Fowler about this.

The error message you are seeing is a bug that occurs when using the Grid in 1.3.  I am working on fixing it for JFXtras 0.7 and will give the JavaFX team the fix so they can include that as well.  (Other than the error message, it is non-fatal)

Thanks for reporting this!</description>
		<content:encoded><![CDATA[<p>Jose,</p>
<p>Good catch.  It looks like Amy had to take out the rows accelerator function, which was on GridLayoutInfo.</p>
<p>The docs should probably be updated to show an example of the longer syntax you described in your fix.  I will mention something to Amy Fowler about this.</p>
<p>The error message you are seeing is a bug that occurs when using the Grid in 1.3.  I am working on fixing it for JFXtras 0.7 and will give the JavaFX team the fix so they can include that as well.  (Other than the error message, it is non-fatal)</p>
<p>Thanks for reporting this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jose Nunez</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12530</link>
		<dc:creator>Jose Nunez</dc:creator>
		<pubDate>Fri, 07 May 2010 00:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12530</guid>
		<description>Hello Steve,

GridView doesn&#039;t work in OSX (Netbeans 6.9 + JavaFX 1.3). The documentation (http://java.sun.com/javafx/1.3/docs/api/com.javafx.preview.layout/com.javafx.preview.layout.Grid.html) says:

[javafx]
 Grid {
     rows: [
         row([Text {content: &quot;Username:&quot;}, TextBox {}])
     ]
 }
[/javafx]

But NetBeans complains about &#039;row&#039; type being missing. Instead if you do this it works:

[javafx]
Grid {
                rows: [
                    GridRow {
                        cells: [
                            Text {content: &quot;Username:&quot;}, TextBox {}
                        ]
                    }
               ]
}
[/javafx]

But then the environment complains about this:

WARNING: Please set rows rather than content when using the Grid

Any ideas?

Thanks for the hard work!

--Jose</description>
		<content:encoded><![CDATA[<p>Hello Steve,</p>
<p>GridView doesn&#8217;t work in OSX (Netbeans 6.9 + JavaFX 1.3). The documentation (<a href="http://java.sun.com/javafx/1.3/docs/api/com.javafx.preview.layout/com.javafx.preview.layout.Grid.html" rel="nofollow">http://java.sun.com/javafx/1.3/docs/api/com.javafx.preview.layout/com.javafx.preview.layout.Grid.html</a>) says:</p>
<pre class="brush: javafx; title: ; notranslate">
 Grid {
     rows: [
         row([Text {content: &quot;Username:&quot;}, TextBox {}])
     ]
 }
</pre>
<p>But NetBeans complains about &#8216;row&#8217; type being missing. Instead if you do this it works:</p>
<pre class="brush: javafx; title: ; notranslate">
Grid {
                rows: [
                    GridRow {
                        cells: [
                            Text {content: &quot;Username:&quot;}, TextBox {}
                        ]
                    }
               ]
}
</pre>
<p>But then the environment complains about this:</p>
<p>WARNING: Please set rows rather than content when using the Grid</p>
<p>Any ideas?</p>
<p>Thanks for the hard work!</p>
<p>&#8211;Jose</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steveonjava</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12338</link>
		<dc:creator>steveonjava</dc:creator>
		<pubDate>Tue, 27 Apr 2010 08:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12338</guid>
		<description>Added a link to an excellent guide by Dean Iverson on the new CSS styling: http://pleasingsoftware.blogspot.com/2010/04/advanced-javafx-control-styling.html</description>
		<content:encoded><![CDATA[<p>Added a link to an excellent guide by Dean Iverson on the new CSS styling: <a href="http://pleasingsoftware.blogspot.com/2010/04/advanced-javafx-control-styling.html" rel="nofollow">http://pleasingsoftware.blogspot.com/2010/04/advanced-javafx-control-styling.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JavaFX 1.3 and NetBeans 6.9 Beta released &#171; Across the Universe</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12325</link>
		<dc:creator>JavaFX 1.3 and NetBeans 6.9 Beta released &#171; Across the Universe</dc:creator>
		<pubDate>Mon, 26 Apr 2010 13:56:06 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12325</guid>
		<description>[...] Chin has Wayne and Garth present the &#8220;JavaFX 1.3 Top 10 Features&#8221; on his [...]</description>
		<content:encoded><![CDATA[<p>[...] Chin has Wayne and Garth present the &#8220;JavaFX 1.3 Top 10 Features&#8221; on his [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernando Cassia</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12323</link>
		<dc:creator>Fernando Cassia</dc:creator>
		<pubDate>Mon, 26 Apr 2010 13:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12323</guid>
		<description>I still cannot promote JavaFX on my blog as a replacement for Flash… as there´s no decent JavaFX applet for embedding and playing .FLV and Ogg Theora.

This should be a priority. Sun/Oracle should put coders to replicate the functionality of the Flash-based and open source Jaris player, in JavaFX, and add some cool features to the mix (like the ability to bookmark videos to the local system, minimize the player to the systray (using JDIC) etc…

FYI: jaris
http://sourceforge.net/projects/jaris/</description>
		<content:encoded><![CDATA[<p>I still cannot promote JavaFX on my blog as a replacement for Flash… as there´s no decent JavaFX applet for embedding and playing .FLV and Ogg Theora.</p>
<p>This should be a priority. Sun/Oracle should put coders to replicate the functionality of the Flash-based and open source Jaris player, in JavaFX, and add some cool features to the mix (like the ability to bookmark videos to the local system, minimize the player to the systray (using JDIC) etc…</p>
<p>FYI: jaris<br />
<a href="http://sourceforge.net/projects/jaris/" rel="nofollow">http://sourceforge.net/projects/jaris/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JavaFX links of the week, April 25 // JavaFX News, Demos and Insight // FX Experience</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12303</link>
		<dc:creator>JavaFX links of the week, April 25 // JavaFX News, Demos and Insight // FX Experience</dc:creator>
		<pubDate>Sun, 25 Apr 2010 20:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12303</guid>
		<description>[...] Stephen Chin has covered his top 10 features in the new JavaFX 1.3 release. [...]</description>
		<content:encoded><![CDATA[<p>[...] Stephen Chin has covered his top 10 features in the new JavaFX 1.3 release. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: theuserbl</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12253</link>
		<dc:creator>theuserbl</dc:creator>
		<pubDate>Sat, 24 Apr 2010 17:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12253</guid>
		<description>And if you want to know, what is QML:
http://labs.trolltech.com/blogs/2010/01/27/upcoming-qtcreator-support-for-qml-or-what-is-bauhaus/
http://qt.nokia.com/developer/qt-qtcreator-prerelease</description>
		<content:encoded><![CDATA[<p>And if you want to know, what is QML:<br />
<a href="http://labs.trolltech.com/blogs/2010/01/27/upcoming-qtcreator-support-for-qml-or-what-is-bauhaus/" rel="nofollow">http://labs.trolltech.com/blogs/2010/01/27/upcoming-qtcreator-support-for-qml-or-what-is-bauhaus/</a><br />
<a href="http://qt.nokia.com/developer/qt-qtcreator-prerelease" rel="nofollow">http://qt.nokia.com/developer/qt-qtcreator-prerelease</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: theuserbl</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12252</link>
		<dc:creator>theuserbl</dc:creator>
		<pubDate>Sat, 24 Apr 2010 17:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12252</guid>
		<description>And now again:

JavaFX have the wrong license:
http://lobobrowser.wordpress.com/2008/12/22/javafx-10-license-unreasonable/
http://lobobrowser.wordpress.com/2009/10/21/lobo-integration-in-deepamehta/
http://weblogs.java.net/blog/robogeek/archive/2010/02/03/ipad-flash-kerfluffle-applets-and-javafx

If you want something like JavaFX, then take Nokias QML, which will be in the future LGPLv2 and GPLv3 together with the the other stuff of Qt.


And here the interesting part of the JavaFX license (since JavaFX 1.3 only the word &quot;Sun&quot; have been changed to &quot;Oracle&quot;):

5. Restrictions.

(a) The copies of Software provided to you under this Agreement are licensed, not sold, to you by Oracle. Oracle reserves all rights not expressly granted. (b) You may make a single archival copy of Software, but otherwise may not copy, modify, or distribute Software.  (f) You may not publish or provide the results of any benchmark or comparison tests run on Software to any third party without the prior written consent of Oracle.

6. Java Compatibility and Open Source.

Software may contain Java technology. You may not create additional classes to, or modifications of, the Java technology, except under compatibility requirements available under a separate agreement available at www.java.net.




The problem is, that people think about Java, if they here JavaFX. But Java is as OpenJDK OpenSource under the GPL+GNU Classpath exception. JavaFX have &quot;only&quot; the compiler as OpenSource under the GPL __without__ GNU Classpath exception. And the runtime of JavaFX have that stupid license.</description>
		<content:encoded><![CDATA[<p>And now again:</p>
<p>JavaFX have the wrong license:<br />
<a href="http://lobobrowser.wordpress.com/2008/12/22/javafx-10-license-unreasonable/" rel="nofollow">http://lobobrowser.wordpress.com/2008/12/22/javafx-10-license-unreasonable/</a><br />
<a href="http://lobobrowser.wordpress.com/2009/10/21/lobo-integration-in-deepamehta/" rel="nofollow">http://lobobrowser.wordpress.com/2009/10/21/lobo-integration-in-deepamehta/</a><br />
<a href="http://weblogs.java.net/blog/robogeek/archive/2010/02/03/ipad-flash-kerfluffle-applets-and-javafx" rel="nofollow">http://weblogs.java.net/blog/robogeek/archive/2010/02/03/ipad-flash-kerfluffle-applets-and-javafx</a></p>
<p>If you want something like JavaFX, then take Nokias QML, which will be in the future LGPLv2 and GPLv3 together with the the other stuff of Qt.</p>
<p>And here the interesting part of the JavaFX license (since JavaFX 1.3 only the word &#8220;Sun&#8221; have been changed to &#8220;Oracle&#8221;):</p>
<p>5. Restrictions.</p>
<p>(a) The copies of Software provided to you under this Agreement are licensed, not sold, to you by Oracle. Oracle reserves all rights not expressly granted. (b) You may make a single archival copy of Software, but otherwise may not copy, modify, or distribute Software.  (f) You may not publish or provide the results of any benchmark or comparison tests run on Software to any third party without the prior written consent of Oracle.</p>
<p>6. Java Compatibility and Open Source.</p>
<p>Software may contain Java technology. You may not create additional classes to, or modifications of, the Java technology, except under compatibility requirements available under a separate agreement available at <a href="http://www.java.net" rel="nofollow">http://www.java.net</a>.</p>
<p>The problem is, that people think about Java, if they here JavaFX. But Java is as OpenJDK OpenSource under the GPL+GNU Classpath exception. JavaFX have &#8220;only&#8221; the compiler as OpenSource under the GPL __without__ GNU Classpath exception. And the runtime of JavaFX have that stupid license.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikolay</title>
		<link>http://javafx.steveonjava.com/javafx-1-3-top-10/#comment-12251</link>
		<dc:creator>Nikolay</dc:creator>
		<pubDate>Sat, 24 Apr 2010 17:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://steveonjava.com/?p=1112#comment-12251</guid>
		<description>But where is TableView control???????????</description>
		<content:encoded><![CDATA[<p>But where is TableView control???????????</p>
]]></content:encoded>
	</item>
</channel>
</rss>

