Setting Cursor in Applet Code in Browser Window

Setting Cursor in Applet Code in Browser Window

Question:
The AWT’s Frame class provides a setCursor method that allows me to set the cursor to one of the standard images (arrow, watch, etc.). The problem is I’m implementing an applet that lives in a browser window, not in a frame. How can I set the cursor in applet code (short of creating an invisible frame and calling its setCursor method)?

Answer:
I recently read somewhere that one can simply search through the ancestors of an applet in its component hierarchy until a frameis encountered, then use the frame’s setCursor() method. I wassurprised. I guess this frame must be the one created by the browseritself. I tried a few experiments and discovered that in Netscape myapplet did indeed have an ancestral container which was an instance ofa class called EmbeddedAppletFrame, which extended the Frame class.

Using Sun’s Applet Viewer, the same experiment produced an ancestorin the AppletViewer class, which apparently extends the Frame class.If it is generally true that all applets in all browsers arecontained in a Java frame, then this seems to open the doorfor all kinds of interesting hacks!

Below is a sample applet that allows users to select a cursor. Itworks in Netscape and Applet Viewer.

*/import java.awt.*;import java.applet.*;public class CursorDemo extends Applet {   private Frame myFrame;  // my frame ancestor   public void init() {      Panel p = new Panel();      p.setLayout(new FlowLayout());      p.add(new Button(“CROSSHAIR”));      p.add(new Button(“HAND”));      p.add(new Button(“WAIT”));      p.add(new Button(“TEXT”));      p.add(new Button(“DEFAULT”));      setLayout(new BorderLayout());      add(“North”, new Label(“Select a cursor:”));      add(“Center”, p);      /* search ancestors in the component hierarchy         until a frame is found      */      Object parent = getParent();      while (! (parent instanceof Frame))          parent = ((Component) parent).getParent ();      myFrame = (Frame) parent; // EmbeddedAppletFrame in Netscape   }   public boolean action(Event e, Object arg) {      if (arg.equals(“CROSSHAIR”))         myFrame.setCursor (Frame.CROSSHAIR_CURSOR);      else if (arg.equals(“HAND”))         myFrame.setCursor(Frame.HAND_CURSOR);      else if (arg.equals(“WAIT”))         myFrame.setCursor(Frame.WAIT_CURSOR);      else if (arg.equals(“TEXT”))         myFrame.setCursor(Frame.TEXT_CURSOR);      else if (arg.equals(“DEFAULT”))         myFrame.setCursor(Frame.DEFAULT_CURSOR);      else         return false;      return true;   }   }      

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes