ayt.. i have a little concern here, my question is is Platform.runlater() the only way of getting back to the UI thread or are there any alternatives..
-for example-
new Thread(new Runnable() {
@Override
public void run() {
// i do something slick here
Platform.runLater(new Runnable() { // is this the only way??
@Override
public void run() {
// TODO Auto-generated method stub
TextField txt =new TextField(" internal server error -Re-try");
root.getChildren().add(txt);
}
});
}
}).start();;
i'd like to know if there are other means..thanks in advance...