I have a text node , which contains underline , strike through & overline. I have applied a LinearGradient as the fill . LinearGradient is applied for the overline , but where as strike through & overline is not having LinearGradient. I have a screen shot . I tested this with Sep25 build with jdk6u10 b31 promoted build.
import javafx.stage.Frame;
import javafx.scene.text.*;
import javafx.scene.*;
import javafx.scene.paint.*;
import javafx.scene.input.MouseEvent;
import java.lang.System;
var text : Text = Text {
content : "This is javafx"
x : 100
y : 100
strikethrough : true
underline : true
overline : true
font : Font {
size : 48
}
fill: LinearGradient {
startX: 0.0
startY: 0.0
endX: 1.0
endY: 0.0
proportional: true
stops: [
Stop { offset: 0.0 color: Color.BLACK },
Stop { offset: 0.8 color: Color.RED }
Stop { offset: 1.0 color: Color.GREEN }
]
}
onMouseEntered : function(e:MouseEvent ) : Void {
System.out.println("Mouse Entered");
}
onMouseExited : function(e:MouseEvent ) : Void {
System.out.println("Mouse exited");
}
}
Frame {
scene : Scene {
content : [text]
}
visible : true
}
import javafx.stage.Frame;
import javafx.scene.text.*;
import javafx.scene.*;
import javafx.scene.paint.*;
import javafx.scene.input.MouseEvent;
import java.lang.System;
var text : Text = Text {
content : "This is javafx"
x : 100
y : 100
strikethrough : true
underline : true
overline : true
font : Font {
size : 48
}
fill: LinearGradient {
startX: 0.0
startY: 0.0
endX: 1.0
endY: 0.0
proportional: true
stops: [
Stop { offset: 0.0 color: Color.BLACK },
Stop { offset: 0.8 color: Color.RED }
Stop { offset: 1.0 color: Color.GREEN }
]
}
onMouseEntered : function(e:MouseEvent ) : Void {
System.out.println("Mouse Entered");
}
onMouseExited : function(e:MouseEvent ) : Void {
System.out.println("Mouse exited");
}
}
Frame {
scene : Scene {
content : [text]
}
visible : true
}
- duplicates
-
JDK-8107513 Gradients don't translate correctly w/ JDK6u12
-
- Closed
-