What it looks like when you don't have java installed

I had to go way back on a back up because of computer problems and went to my site after I got firefox downloaded again but before I downloaded java. It looks like a missing spot, more or less, the window doesn’t show and firefox doesn’t say you are missing a plug-in. That’s with Vista.

Read up on the applet or object html flags. Basically you put the text you want displayed between these tags.

Example:

<APPLET code="XYZApp.class" codebase="html/" align="baseline"
    width="200" height="200">
<PARAM name="model" value="models/HyaluronicAcid.xyz">
    No Java 2 SDK, Standard Edition v 1.4.2 support for APPLET!!
</APPLET>

Thanks.

Better use the OBJECT and EMBER tag, so that the browser will automatically notify and offer a download to the user (with that yellow bar at the top of the page) that Java is required for displaying all content on the webpage.

I prefer Applet tag as they enable you to do some nice (I didn’t say mine are :slight_smile: …) custom message

Test Applet:

http://demo.dzzd.net/MOTO3D/MOTO.html

How it look without Java :

http://demo.dzzd.net/MOTO3D/MOTONJ.html

Code :

<APPLET archive="dzzd.jar,LIB/timer.jar,extension.jar"
		code	= "Boot.class"
	    width	= "500"
	    height	= "450"
	    MAYSCRIPT>
<PARAM NAME="IMAGE" VALUE="BLANK.GIF">
<PARAM NAME="BOOTBGCOLOR" VALUE="eeeeee">
<PARAM NAME="BOOTCLASS" VALUE="Viewer3D">		
<PARAM NAME="MODELFILENAME" VALUE="MOTO.3DS">
<PARAM NAME="MODELFILEPATH" VALUE="SAMPLE/">
<PARAM NAME="CAMERANAME" VALUE="Camera01">
<PARAM NAME="BGCOLOR" VALUE="EEEEEE">

<TABLE STYLE="WIDTH:500px;HEIGHT:450px">
<TR><TD STYLE="text-align:center">
<A HREF="http://java.com/">
<IMG STYLE="BORDER:0px" SRC="./MOTO.JPG">
</A>
</TD></TR>
</TABLE>

</APPLET>