How would I make my cursor invisible using java?
-
I'm trying to make a JApplet, but I'm having difficulty making the cursor invisible. Does anyone know how to make the cursor invisible?
-
Answer:
This should help: there's a setCursor() method written into Java. from within the applet you can use the MouseMotionListener as suggested before to check and see if it's in the specified area and if so just call this.setCursor( new Cursor( some_empty_icon ) ); and you have what you need. Here's some code where I did something similar, looking for hot spots on an applet: public void mouseMoved( MouseEvent e ){ if( board.changeCursor( e.getX(), e.getY() ) this.setCursor( new Cursor( Cursor.HAND_CURSOR ) ); else this.setCursor( new Cursor( Cursor.DEFAULT_CURSOR ) ); } where board.changeCursor just checked to see whether the mouse was moved to a hot spot or not. hope this helps. If you want to check and see what Cursors are available check out the API. -Joe (Copied from link below)
Notte at Yahoo! Answers Visit the source
Related Q & A:
- How do I make a window in Java?Best solution by Stack Overflow
- How can I make a Spinner only by java?Best solution by stackoverflow.com
- how can I listen for database changes using java?Best solution by Stack Overflow
- How do I make my web browser java compatible?Best solution by answers.yahoo.com
- How can I make money at home using my computer without doing any type of multi-level marketing?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.