Javafx Robot无法使用Javafx 2.2

时间:2012-08-14 10:40:25

标签: java automation javafx javafx-2

看起来com.sun.glass.ui.Robot在Javafx 2.2中不再有效。

还有其他选择吗?

我已经转移到AWT机器人,但这似乎不是最好的解决方案。

1 个答案:

答案 0 :(得分:5)

Glass(FX)机器人在2.2中为我工作。尝试下一步:

public void start(Stage stage) {
    Button btn = new Button();
    btn.setText("Button");
    btn.setOnAction(new EventHandler<ActionEvent>() {
        @Override
        public void handle(ActionEvent event) {
            System.out.println("Hello World!");
        }
    });

    Scene scene = new Scene(new Group(btn), 300, 250);

    stage.setTitle(VersionInfo.getRuntimeVersion());
    stage.setScene(scene);
    stage.setX(100);
    stage.setY(100);
    stage.show();

    Robot robot = com.sun.glass.ui.Application.GetApplication().createRobot();
    robot.mouseMove(130, 130);
    robot.mousePress(1);
    robot.mouseRelease(1);
}

如果您想要添加公共API,可以投票支持下一期:http://javafx-jira.kenai.com/browse/RT-17571