...
If the content is a JavaFX Node, then the Hyperlink's graphic will be set to the JavaFX Node.
Usage
Used for showing additional information about a Control when the Control is hovered over by the mouse.
Examples
| 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()) {
hyperlink (
layoutX: 25,
layoutY: 300,
text: "http://www.google.com"
onAction: { println 'Go to http://www.google.com' } )
}
}
});
|