Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8898061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:30:47+00:00 2026-06-15T00:30:47+00:00

I want to create a mouselistner on my javafx rectangle. the idea is that

  • 0

I want to create a mouselistner on my javafx rectangle.

the idea is that the rectangle has to change color when i press it?

Does anyone know how to add a listner to shapes in Javafx?

so far ive tried this:

    final Rectangle rect = new Rectangle();

        rect.setOnMouseClicked(new EventHandler<MouseEvent>() {

            @Override
            public void handle(MouseEvent event) {
                // TODO Auto-generated method stub

            }
        });

However i get an error saying that

the method setOnMouseClicked(new EventHandler(){}) is
undefined for the type Rectangle

Abit more information:

The only options i have for rect are these:

rect.add()
rect.contains()
rect.grow();
rect.hashcode()
rect.intersection();

and a few others of no importance.

The import i am using are the following:

import com.sun.glass.events.MouseEvent;
import com.sun.javafx.geom.Rectangle;
import com.sun.javafx.geom.Shape;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T00:30:48+00:00Added an answer on June 15, 2026 at 12:30 am

    Your code looks correct and matches any examples I can find. To demonstrate this I have thrown together a quick example:

    public class JavaFXApplication extends Application {
    
        Rectangle rect = new Rectangle(100,100);
    
        @Override
        public void start(Stage primaryStage) {
            rect.setFill(Color.BLUE);
    
            rect.setOnMouseClicked(new EventHandler<MouseEvent>()
            {
                @Override
                public void handle(MouseEvent t) {
                    rect.setFill(Color.RED);
                }
            });
    
    
            StackPane root = new StackPane();
            root.getChildren().add(rect);
    
            Scene scene = new Scene(root, 300, 250);
    
            primaryStage.setTitle("Hello World!");
            primaryStage.setScene(scene);
            primaryStage.show();
        }
    }
    

    When the rectangle is clicked, the colour changes from blue to red.

    This might be a long shot but make sure you are referencing the Rectangle type from the JavaFX library and not the AWT Rectangle i.e. make sure your import is:

    import javafx.scene.shape.Rectangle;
    

    and not

    import java.awt.Rectangle;
    

    Update

    As per my original comment it looks as though you are referencing the wrong import for the Rectangle type. I don’t recognise the import com.sun.javafx.geom.Rectangle, is this from an older version of JavaFX?

    You are also referencing the incorrect MouseEvent type.

    Change:

    import com.sun.glass.events.MouseEvent;
    

    To:

    import javafx.scene.input.MouseEvent;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want create a command that has the following structure command path/to/some/file How do
I want create wordpress website into which I want create user management... That means
i want create a custom json data from the mssql 2008 results so that
I want to create a new field (or two) in my table that is
I want to create a listener that works like mouselistener, but it must be
I want create a tarball that when extracted the file(s) will be placed at
I want create a pdf using iText. The method which does this is a
I want create texture atlas(matrix of images) from multiple images.Is their any applescript that
I want create a cache so that when an item doesn't exist, only one
I want create a function that verify if the numbers of a list fall

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.