Applets Section Index
How do I change the location for the cache used by Java Web Start / Java Plug-in?
Open up the Java Control Panel. On the General tab, select the Settings button in the Temporary Internet Files section. From there, select Change in the Location and identify the new location to m...more
How do I disable caching in Java Web Start?
Open up the Java Control Panel, on the General tab, select Settings in the Temporary Internet Files section. From there, make sure the checkbox next to the "Keep temporary files on my computer" op...more
How do I disable Java in Mozilla Firefox?
Select Options in the Tools menu. From there, select Content on the top, and then make the the checkbox next to "Enable Java" is off.
How do I have the Java console automatically show up when the runtime for the Java Plug-in starts up?
This is controlled by an option in the Control Panel. Find the Advanced tab of the Java feature under the Control Panel. Select "Show console" and it will startup automatically.
I've hidden the Java Console from the system tray in Windows. How do I get it back?
Select Java in the Control Panel. Select the Advanced Tab. Find the Miscellaneous option at the bottom.
Make sure the "Place Java icon in system tray" option is selected.
What's up with applet permissions on Windows Vista?
According to the release notes:
On Windows Vista, there is a more restrictive sandbox for signed applets. A user has fewer privileges than if they were running on another Windows OS.
On a Wind...more
Im looking for the simpliest TTT source code, 3x3 matrix...Human vs Human. If anyone have it, please show me the script.
Here is a TicTacToe applet/application hybrid.
It runs as an applet in a browser and as an application when launched from the command prompt.
import java.awt.*;
import java.awt.event.*;
import j...more
How can I save applet state?
An applet persistence API was introduced some time ago with JDK 1.4, offering three methods of the java.applet.AppletContext interface: setStream(), getStream(), and getStreamKeys(). Use the setSt...more
Where can I find a complete example of using RMI in applets?
Sun provides one in their Getting Started with RMI guide.
How can I get a JavaScript menu to dropdown on top of an applet. The ones I have always go behind the applets I have loaded on my page.
You should think of an applet is a self containing page in a page. Because of this, the applets behave like they are different objects in html pages. This is the same for flash movies as well. Try...more
Are the attributes in the APPLET HTML tag sensitive to the order they are listed?
The applet tags like ARCHIVE and CODE are not supposed to be sensitive to the order they are listed. However, some older versions of browsers required the ARCHIVE tag to be before the CODE tag for...more
Can I prevent someone from downloading my applet's class files and installing them on their own machine/server?
No. If a file is downloadable from the web, anyone can download it, this includes applet files.
How do i access the underlying DOM Document for my HTML Page of my Browser?
DOMService service = null;
try
{
service = DOMService.getService(MyApplet);
String title = (String) service.invokeAndWait(new DOMAction()
{
...more
Where can i find a list of compatability issues between Microsoft's VM and Sun's Java 2 VM?
Microsoft VM and Java 2 Applet Compatibility Issues
Where is the Java Plugin Developers Guide for JDK1.4?
Java Plug-in 1.4 Developer Guide