Search:

Type: Posts; User: tukhes

Search: Search took 0.19 seconds.

  1. Replies
    9
    Views
    1,931

    Re: Changing Cursor Properly

    Ok i figured it out! yay! By doing some tests with the cursor I figured out that for some reason the cursor wasn't being drawn by it's type properly. It was crosshair but being drawn as a normal...
  2. Replies
    9
    Views
    1,931

    Re: Changing Cursor Properly

    Any idea on how to fix it?
  3. Replies
    9
    Views
    1,931

    Re: Changing Cursor Properly

    I'm running macOSX. would that make a difference? Like I start it in my browser, then when I hover my mouse over it, it turns into the crosshair. but once i click on it, it turns back to a normal...
  4. Replies
    9
    Views
    1,931

    Re: Changing Cursor Properly

    import java.applet.*;
    import java.awt.*;
    public class NewClass extends Applet implements Runnable{
    Cursor c;

    public void init(){
    c = new Cursor(Cursor.CROSSHAIR_CURSOR);
    ...
  5. Replies
    9
    Views
    1,931

    Changing Cursor Properly

    Ok guys pretty confused with this. What I am aiming to do is have the cursor the same in the applet the whole time! My code to set the cursor is this:
    c = new Cursor(Cursor.CROSSHAIR_CURSOR);
    ...
Results 1 to 5 of 5