Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Resolved Hyperlink (open webpage)

Joined
Feb 12, 2018
Messages
48
Has anyone managed to setup a working hyperlink in their user interface?

I created a working Hyperlink handler, but can't figure out how to open a webpage. (that redirects to bot overview):

Code:
        fxHyperlink.setOnAction(new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent e) {
                //???
            }
        });
 
Joined
Feb 12, 2018
Messages
48
Yep, i found that, but i can't actually open a webpage :(
there is no setLink() or setTarget() or setPage() or anything similar in the Hyperlink object.
 
Top