import java.awt.*; import java.applet.*; public class masouris extends Applet { String msgStr; public void init() { msgStr = ""; Font font = new Font("Arial", Font.BOLD, 36); setFont(font); resize(300, 200); } public void paint(Graphics g) { g.drawString(msgStr, 40, 120); } public boolean mouseEnter(Event evt, int x, int y) { msgStr = "Mouse in"; repaint(); return true; } public boolean mouseExit(Event evt, int x, int y) { msgStr = "Mouse out"; repaint(); return true; } }