javafx

non java-developer question

Just a basic question about Java (haven't really done anything with it personally yet): Is it possible to write a Java program that runs in a web browser (via JRE) on the client machine? Is something like Groovy or JavaFX really a wrapper for something that technically could be written in Java? I assumed that JavaFX at least was inten...

Javadoc for JavaFX (not JavaFX api!); from source? from project scenegraph?

The API JavaFX comes with is for the JavaFX langage, which I have one reason to learn, but more reasons not to. I know Project Scenegraph (scenegraph.dev.java.net, AKA Scenario) is ambiguously the same library. I would just generate javadocs from Project Scenegraph, but it hasn't seen an update since 2007 and the mailing lists are dead. ...

JavaFx on Linux 2.4.26/ARM9 Processor/200MHz/32MB RAM

Hi, I am new to JavaFx technology, I would like to know whether I can have JavaFx on a Linux kernel 2.4.26 (no other commercial distribution), it is a touch screen based navigation system runs on a ARM9 processor (200MHz, 32MB RAM). While searching, I found that JavaFx is supported on Linux platforms, but I couldn't find any reference ...

Displaying a string with variables in JavaFX

I have little quiz game I've working on and am tracking correct answers. I have a text object that displays the number of consecutive correct answers. This is the content: content: bind consecutive.toString(); What I would like to do is mix that in with some string output like this: content: "{bind consecutive.toString()} in a row!" ...

Distributing/deploying JavaFX apps

I am just finishing up a little app in JavaFX and am starting to think about how to distribute it. I figured this would be a simple matter of hitting the build button and using one of the resulting files. For some reason build creates: Jar file which complains it can't find its main class when doubleclicked. A jnlp file which ...

JavaFX with Maven

Hi, I recently started a JavaFX project, and I'd like to use Maven as my compiler/deployment tool. Is there a good tutorial or plugin to integrate JavaFX and Maven? ...

How can i manage dependecy of JavaFX project with m2Eclipse plugin ?

JavaFX Editor in Eclipse couldn't see dependencies which is imported by m2eclipse (Junit, JavaFX library..), i must put libraries from Project Properties - Java Build Path - Libraries, if i want to solve this problem. M2Eclipse plugin and JavaFX plugin couldn't work together? OR JavaFX plugin couldn't work with Eclipse successfully ?...

short version of timelines

I just started with JavaFX and as usual when learning a new language I started with a little project. As far as I understand at(0ms) { //change values }, is only a shortcut for KeyFrame { time : 0ms values : //change values } so why does my code to move pacman does two completly different things depend...

How does JavaFX compare to WPF?

I'm mostly a C# programmer, I stopped writing Java about 10 years ago, but I try to keep up with the technology in Java by reading articles, talking with friends, etc. I've heard about the new rich GUI framework called JavaFX, but couldn't find any resource comparing it with non-Java parallels. Since I'm very familiar with C# and WPF, ...

What are disadvantages of JavaFX and Silverlight?

JavaFX is a new technology introduced by Sun. I would like to know what are the limitations and pitfalls of JavaFX and silverlight......... ...

Hessian Web service invocation from a JavaFX Applet

Hi, I'm trying to invoke a Hessian Web Service from a JavaFX applet. I know it needs some reflection permissions so I signed it myself for testing but even then it doesn't work. The browser asks me if I accept the certificate, I click yes but I receive the permission exceptions anyway: com.caucho.hessian.client.HessianRuntimeException:...

JavaFX MediaPlayer: problem with setting of mute and volume properties

Hi, first of all sorry for my bad english, I'm Italian... :) I'm developing with JavaFX and I'm new of it... I've an instance of a MediaPlayer and I can play songs, but if I set the volume properties to 0 or to other values the volume doesn't change and the song plays at the maximum. If I set the mute properties to true it's the same ...

JavaFX call back from Java with Smack API (xmpp)

Hello, I'm new to Java and JavaFX and playing around with the Smack API for instant messaging. At moment I have a java file working for loggin in/out of a jabber server (Openfire), send message and receive messages. Log-in/out and send message is called from a javafx file. However, I'm struggling to get received messages to be displayed ...

Creating a desktop icon using JWS JNLP for a JavaFX app.

I am trying to get a custom destop icon to be displayed for my app but for some reason no matter what I do the same default java icon shows up. I have tried everything I can think of and gone and compared my jnlp file with others whose icons seem to work ok. According to everything I have read the following should work fine. But of cours...

Adobe AIR, Microsoft Silverlight, JavaFX and Mozilla Prism... What are your thoughts on this competition?

There are a lot of questions on S.O. about JavaFX vs. Silverlight vs. AIR, and now Prism is going to be released. These are four different technologies with a similar goal. I thought we could gather the main points -pros and cons- to consider one or the other in a community wiki question. Try to keep the flaming level at its lowest pos...

Eclipse and JavaFX? is it just me?

I'm looking at learning JavaFX. I've tried setting Eclipse to develop a small app and I've downloaded the Eclipse plugin. Eclipse JavaFX plugin BUT... it just seems, well, flakey. So I have 3 questions... 1: Is there a better plugin? 2: Or is there some great set of tutorials out there that I'm missing? 3: finally, is it meant to ...

JavaFX Reference in one document - where / how?

I'm currently learning JavaFX and as I'm not always connected to the internet i was looking for the JavaFX Reference in pdf or html (one file) format, but I found only this JavaFX Reference Any ideas where to get a complete document or how I can download the whole Reference? ...

What is difference between JavaFX and Silverlight

I like to know difference between Silverlight and JavaFX. Anybody help me. ...

Media encoding in JavaFX / SilverLight

I'm wondering if this is possible to be done either in JavaFX / SilverLight: Download an MPEG1 file from a remote server and then convert it to MPEG4 using the client's processing power (to reduce load from server)..I suppose this would be running as an applet on the browser, but my question is, can this be done using either of those te...

java.net.SocketException: Connection Reset

I am running a client-server java code on my local machine n am connecting them using java sockets. I'm able to connect the client to the server and send a string of data, initially. When the server gets the data it also returns a string, initially. After that communication the whole thing just crashes. No response from both sides. I'...