How does JavaFX compare to Flash and Flex? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:55:35Z http://stackoverflow.com/feeds/question/277414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex 8 How does JavaFX compare to Flash and Flex? Yaba 2008-11-10T09:26:27Z 2009-11-08T07:16:02Z <p>I know Flex pretty good but also started to use Java FX. I am a little bit confused. Java FX seems to focus more on low level drawing operations and animations. Less on creating standard UIs like Flex.</p> <p>So is JavaFX more like Flash than Flex?</p> <p>On the other side JavaFX also supports Swing components as well as data binding, which makes it appear more like Flex.</p> http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex/277946#277946 8 Answer by David for How does JavaFX compare to Flash and Flex? David 2008-11-10T14:11:54Z 2008-11-10T15:49:16Z <p>I think JavaFX is more like Flex, because JavaFX is more about building applications than animations (which is, I gather, one of the sensitive distinctions between Flex and Flash). </p> <p>I think of JavaFX and Flex as the future heirs to Rich Internet Application programming. They're both intended to stretch the realm of what's possible with RIA.</p> <p>One of the biggest benefits of JavaFX that I see is that <b>you can use your existing Java business logic by simply importing it</b>. </p> <p>Some of the language features, such as <b>binding</b> and <b>duration as a data type</b>, are paradigm-shifting, because they make certain functionality possible and readily available:</p> <ul> <li>Binding: Connecting two values together, so you can automatically update one value when the other updates. Example: "name: bind textfield.getValue". Much easier than setting up Observer patterns to watch for changes to variables.</li> <li>Duration can be used as a data type: "var frameDelay = 5ms". Having Duration as an integral part of the language seems like a no-brainer when dealing with animations.</li> </ul> http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex/278234#278234 1 Answer by Iain for How does JavaFX compare to Flash and Flex? Iain 2008-11-10T15:55:27Z 2008-11-10T16:21:12Z <p>I'd say it's more like Flash - or at least it's about bringing Flash-like abilities to Java. Don't forget that Flex is built on top of Flash. JavaFX script from what I've seen is quite similar to ActionScript, and not at all like MXML. Sun seem to be stressing the importance of things like video and the ability to work with vector graphics from industry standard design programs.</p> <p>I think beauty of Flash is the ability to create your own, nice-looking UI components, whereas Flex is about laying out standard components using tags. So again, it's more like Flash. </p> http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex/296179#296179 0 Answer by rhtx for How does JavaFX compare to Flash and Flex? rhtx 2008-11-17T17:05:11Z 2008-11-17T17:05:11Z <p>I'm a Flex developer with background in Flash - no Java experience. So, I'd normally skip this thread, but I happened to run across this post, just now:</p> <p><a href="http://www.insideria.com/2008/11/is-client-side-java-losing-gro.html" rel="nofollow">http://www.insideria.com/2008/11/is-client-side-java-losing-gro.html</a></p> <p>It contains a short discussion on Java and Flex, but what is most appropriate to your question, Yaba, is the link to a series of articles a group called Sharendipitous is posting about their conversion from Java to Flex - why they made the decision, how they did it, etc.</p> http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex/317308#317308 2 Answer by Yaba for How does JavaFX compare to Flash and Flex? Yaba 2008-11-25T13:24:37Z 2008-11-25T13:24:37Z <p>Just saw <a href="http://tech.groups.yahoo.com/group/flexcoders/message/130608" rel="nofollow">this posting</a> by Chet Haase, who previously worked on Java FX at Sun, but now works for Adobe on Flex.</p> http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex/1695645#1695645 0 Answer by Akash Kava for How does JavaFX compare to Flash and Flex? Akash Kava 2009-11-08T07:16:02Z 2009-11-08T07:16:02Z <p>I would like to add few points,</p> <ol> <li><p>Flex is far more stable then JavaFX, JavaFX is fairly new.</p></li> <li><p>JavaFX syntax is really bad, its unnecessarily complex, where else flex is pure xml, one can read and understand easily, I didnt understand what made java guys think that instead of using xml (like silverlight and flex), making new language syntax will shock the world? New syntax means new learning curve.</p></li> <li><p>Flex runs on flash, 95% installations world wide, only 1.2MB of Flash download compared to JavaFX + Java runtime of minimum 30 mb, this is too big consideration for publisher.</p></li> </ol>