Access JavaFX current controller from scene event filter The Next CEO of Stack OverflowPassing Parameters JavaFX FXMLAccessing FXML controller classJavaFX: How to get stage from controller during initialization?Setting the background of a GridPane (with or without JavaFx Scene Builder)Swapping anchor pane inside an anchor pane with another anchor pane in JavaFX/Scala?Communication between controllers JavaFXJavaFX, FXML and controllers: switching scenes, maintaining scene dataJavaFx handle dragging nodes from FXML controller of node or main?Javafx Scene switching causing stage size increaseEditing a Pane in a JavaFx SceneManaging scene switching in JavaFX via FXML (Performance Question)Javafx how to switch scenes correctly?

What steps are necessary to read a Modern SSD in Medieval Europe?

logical reads on global temp table, but not on session-level temp table

Can this transistor (2N2222) take 6 V on emitter-base? Am I reading the datasheet incorrectly?

Shortening a title without changing its meaning

How does a dynamic QR code work?

Car headlights in a world without electricity

How can I prove that a state of equilibrium is unstable?

Another proof that dividing by 0 does not exist -- is it right?

Could a dragon use its wings to swim?

What did the word "leisure" mean in late 18th Century usage?

How can a day be of 24 hours?

Why doesn't Shulchan Aruch include the laws of destroying fruit trees?

Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico

Raspberry pi 3 B with Ubuntu 18.04 server arm64: what pi version

How can I separate the number from the unit in argument?

How seriously should I take size and weight limits of hand luggage?

Is the offspring between a demon and a celestial possible? If so what is it called and is it in a book somewhere?

Prodigo = pro + ago?

Free fall ellipse or parabola?

How badly should I try to prevent a user from XSSing themselves?

That's an odd coin - I wonder why

Is it OK to decorate a log book cover?

MT "will strike" & LXX "will watch carefully" (Gen 3:15)?

Cannot restore registry to default in Windows 10?



Access JavaFX current controller from scene event filter



The Next CEO of Stack OverflowPassing Parameters JavaFX FXMLAccessing FXML controller classJavaFX: How to get stage from controller during initialization?Setting the background of a GridPane (with or without JavaFx Scene Builder)Swapping anchor pane inside an anchor pane with another anchor pane in JavaFX/Scala?Communication between controllers JavaFXJavaFX, FXML and controllers: switching scenes, maintaining scene dataJavaFx handle dragging nodes from FXML controller of node or main?Javafx Scene switching causing stage size increaseEditing a Pane in a JavaFx SceneManaging scene switching in JavaFX via FXML (Performance Question)Javafx how to switch scenes correctly?










0















I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:



 AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);

scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());

//Here in the handle method I want to call a method of the current controller


);

Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);

appStage.show();


In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".



Many many thanks for your help.



Dominique










share|improve this question

















  • 2





    Possible duplicate of Accessing FXML controller class

    – Slaw
    Mar 21 at 20:48











  • Might also help: stackoverflow.com/questions/14187963/…

    – Slaw
    Mar 21 at 20:49















0















I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:



 AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);

scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());

//Here in the handle method I want to call a method of the current controller


);

Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);

appStage.show();


In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".



Many many thanks for your help.



Dominique










share|improve this question

















  • 2





    Possible duplicate of Accessing FXML controller class

    – Slaw
    Mar 21 at 20:48











  • Might also help: stackoverflow.com/questions/14187963/…

    – Slaw
    Mar 21 at 20:49













0












0








0








I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:



 AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);

scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());

//Here in the handle method I want to call a method of the current controller


);

Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);

appStage.show();


In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".



Many many thanks for your help.



Dominique










share|improve this question














I am new in JavaFX and fail in what I need to do:
I change scene this way and at the same time define an event filter:



 AnchorPane pane = FXMLLoader.load(getClass().getResource("blabla.fxml"));
Scene scene = new Scene(pane);

scene.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>()
public void handle(KeyEvent event)
System.out.println("Filtering event " + event.getEventType() + ", " + event.getCode());

//Here in the handle method I want to call a method of the current controller


);

Stage appStage = (Stage) ((Node) event.getSource()).getScene().getWindow();
appStage.setScene(scene);

appStage.show();


In the handle method of the event filter I want to execute a particular method of the loaded controller (change images). I cannot put a setOnKeyPressed in this controller since the associated fxml has only images key pressed are not catched. I read that I had to use the addEventFilter on the scene.
It works.
The handle method is correctly triggered but I do not know how to access a method on the controller associated to "blabla.fxml".



Many many thanks for your help.



Dominique







events javafx controller scene






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 21 at 20:00









Dominique SauquetDominique Sauquet

31




31







  • 2





    Possible duplicate of Accessing FXML controller class

    – Slaw
    Mar 21 at 20:48











  • Might also help: stackoverflow.com/questions/14187963/…

    – Slaw
    Mar 21 at 20:49












  • 2





    Possible duplicate of Accessing FXML controller class

    – Slaw
    Mar 21 at 20:48











  • Might also help: stackoverflow.com/questions/14187963/…

    – Slaw
    Mar 21 at 20:49







2




2





Possible duplicate of Accessing FXML controller class

– Slaw
Mar 21 at 20:48





Possible duplicate of Accessing FXML controller class

– Slaw
Mar 21 at 20:48













Might also help: stackoverflow.com/questions/14187963/…

– Slaw
Mar 21 at 20:49





Might also help: stackoverflow.com/questions/14187963/…

– Slaw
Mar 21 at 20:49












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288405%2faccess-javafx-current-controller-from-scene-event-filter%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288405%2faccess-javafx-current-controller-from-scene-event-filter%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript