|
To get the applet to load in your browser you don't need to specify anything in the manifest. Instead the browser looks at the "code" argument supplied via HTML applet parameter.
e.g.
param name="code" value="com.mydomain.MyClass.class"
This is the way the browser knows what class to load.
|