Incorporating JAVA code for 360 panorama in web page HTML
I was given the following JAVA code that permits me to execute a 360 degree panorama on FireFox. I
<html>
<head><title>James Panorama</title></head>
<body bgcolor="#666666">
<div align="center">
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<applet code="ptviewer.class" archive="ptviewer.jar" width=700 height=300>
<param name=file value="backyardpano.jpg">
<param name=cursor value="MOVE">
<param name=pan value=60>
<param name=showToolbar value="false">
<param name=imgLoadFeedback value="true">
<param name=auto value=-0.1>
<param name="autoTime" value=220>
n'Click me'">
</applet>
</div>
</body>
</html>
Now I want to incorporate the 360 degree panorama into the html that was produced via FrontPage (the panorama is to appear on the left of the floor plan. Here is the code that was generated by my work with FrontPage.
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>James Project 1</title>
</head>
<body background="../Project%201/images/Project%20Background%20small%20sample.jpg">
<table Align=center border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="purple" width="1089" id="AutoNumber1">
<tr>
<td>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="purple" width="100%" id="AutoNumber2">
<tr>
<td width="33%" style="border 4px solid purple; " valign=top>
<table >
<tr >
<td>
<font color=white>
This is line 1
</font>
</td>
</tr>
<tr>
<td>
<font color=white>
This is line 2
</font>
</td>
</tr>
<tr>
<td>
<font color=white>
This is line 3
</font>
</td>
</tr>
</table>
</td>
<td width="27%" align=center valign=middle >
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="275" id="AutoNumber3">
<tr> <td> </td> </tr>
<tr> <td> </td> </tr>
<tr>
<td width="300" align=center valign=middle>
<img border="0" src="../Project%201/images/Gold%20Call%20Madalian.jpg" width="273" height="131"></td>
</tr>
<tr>
<td width="273"> <p> </td>
</tr>
</table>
</td>
<td width="40%" valign=top>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="275" id="AutoNumber3">
<tr>
<td>
<font color=white>
This is line 4
</font>
</td>
</tr>
<td>
<font color=white>
This is line 5
</font>
</td>
</table>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber4" height="529">
<tr>
<td width="100%" height="529">
<p align="center">
<img border="0" src="../Project%201/images/Pano%20frame%20together%20jpg.jpg" width="833" height="432"></td>
<img src="../Project%201/Pano%201Templet%201Size" width="743" height="504'></td>
<img src="../Project%201floor%201plan%201templet%201size" width="259" height="506"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan=3 align=center>
<font color=white> <p>applet begin </p> </font >
<applet code="ptviewer.class" archive="ptviewer.jar" width=700 height=300>
<param name=file value="kivaentrypano.jpg">
<param name=cursor value="MOVE">
<param name=pan value=60>
<param name=showToolbar value="false">
<param name=imgLoadFeedback value="true">
<param name=auto value=-0.1>
<param name="autoTime" value=220>
</applet>
<font color=white> <p>applet end </p> </font >
</td>
</tr>
</table>
</body>
</html>
</body>
</html>
Does anybody have any suggestion how to make this incorporation of JAVA into HTML and execute the JAVA via hotspots in the floor plan?