Seus pobremas se acabaram-se (parafraseando Seu Creyson)
package testefx;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.text.Font;
import javafx.scene.shape.Rectangle;
import javafx.scene.paint.Color;
import javafx.scene.text.Text;
import javafx.scene.shape.Circle;
var st:Stage;
st = Stage {
title: "Application title"
width: 250
height: 80
scene: Scene {
content: [
Rectangle {
x:0
y:0
width: bind st.width
height: bind st.height
fill:Color.TRANSPARENT
onMouseClicked: function(e){
println("clicou");
}
},
Text {
font : Font {
size : 16
}
x: 10
y: 30
content: "Application content"
},
Circle {
centerX:30
centerY:40
radius:20
fill:Color.BLUE
opacity:.5
}
]
}
}