-
Bug
-
Resolution: Fixed
-
P2
-
7u6
-
fx2.2 b03
Java Version
1.7.0_03, Oracle Corporation, 1.7.0_03-b05
windows 7
import javafx.animation.RotateTransitionBuilder;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.util.Duration;
public class Sample extends Application {
@Override
public void start(Stage stage) throws Exception {
final Button button = new Button("This is button");
stage.setScene(new Scene(new StackPane() {
{
getChildren().add(button);
}
}));
stage.setWidth(300);
stage.setHeight(300);
stage.show();
RotateTransitionBuilder.create().node(button).duration(Duration.seconds(5)).toAngle(360).cycleCount(50).build().play();
}
public static void main(String[] args) {
launch();
}
}
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.util.Duration;
public class Sample extends Application {
@Override
public void start(Stage stage) throws Exception {
final Button button = new Button("This is button");
stage.setScene(new Scene(new StackPane() {
{
getChildren().add(button);
}
}));
stage.setWidth(300);
stage.setHeight(300);
stage.show();
RotateTransitionBuilder.create().node(button).duration(Duration.seconds(5)).toAngle(360).cycleCount(50).build().play();
}
public static void main(String[] args) {
launch();
}
}
- blocks
-
JDK-8127052 TabPane: label text isn't rotated when tab position is left or right
-
- Closed
-
- duplicates
-
JDK-8127249 When you rotate a container containing controls with text, the control's texts are not rotated.
-
- Closed
-
-
JDK-8120045 Text is rendered wrong in rotating parent
-
- Closed
-
-
JDK-8120792 Text is too small in Fossil Game and PhotoFlockr
-
- Closed
-
- relates to
-
JDK-8120792 Text is too small in Fossil Game and PhotoFlockr
-
- Closed
-