All I need to do is update the shortcut as my program launches. I am reading several files and I wanted it to display the name of the file that it was reading.
However, it only displays the last file using the following code (basically the GUI does not respond until the whole process is complete):
static Text m_status_update = new Text();
I have about 4-5 files, and I just want to display that name.
I saw a similar question Displaying changing values ββin a JavaFx shortcut , the best answer recommended the following:
Label myLabel = new Label("Start");
However, valueProperty is StringProperty, and I am stuck in converting a string to a string property.
Also, I saw this Update shortcut in JAVAFX , but the OP could update the label based on the action. I really have no action?
java javafx
Indigo
source share