Posted by: tareitasfx on: March 12, 2009
A Simple to use TaskPane made with javafx.
Try it with webstart or applet. You can drag the taskpane.
Instruccions:
To use it in your own application just create an instance of TaskPane
var tp: TaskPane = TaskPane {
title: “My Tasks”
pane_width: 190
translateX: 50
translateY: 50
}
Then add nodes to it with the addTask method:
tp.addTask(
SwingLabel {
text: “A Label”
}
);
Thats it!!
Sourcecode: TaskPane.fx