To create a Java applet in BlueJ:
1. Select "New Class" and choose the applet radio button.
2. The applet will extend JApplet and implement init(), start(), stop(), paint(), and destroy() methods.
3. Mouse events can be added by implementing MouseListener and MouseMotionListener interfaces and overriding related methods.