...
If the content is a JavaFX Node, then the Hyperlinkthe Tooltip's graphic will be set to the JavaFX Node.
...
| Code Block |
|---|
GroovyFX.start({
def sg = new SceneGraphBuilder();
sg.stage(
title: "Stage Frame",
x: 100, y: 100, width: 400, height:400,
visible: true,
style: "decorated",
onHidden: { println "Close"}
) {
scene(fill: hsb(128, 0.5, 0.5, 0.5), parent: group()) {
hyperlinkbutton (
layoutX: 25,
layoutY: 300,
text: "http://www.google.comPress me"
onAction: ) {
println 'Go to http://www.google.com' } tooltip(text: "Demonstrates a tooltip on a Button control")
)}
}
}
});
|