| Herbert Stocker 2003-12-22, 11:29 pm |
|
hal wrote:quote:
> I may have found a way to embed VRML into HTML pages so that the world
> may be seen in Netscape and IE.
>
> I tested this on my win98 machine which has IE5.5 and Netscape 4.61.
>
> the test link is...
> http://home.earthlink.net/~alprojec...1/vrmltest.html
>
> Please test the above url on your machine to see if the code works.
> Also please test if you don't have a vrml plugin on your computer, you
> should get an image.
> I am using the <object> tag to implement this without any scripting.
I have IE 5.5 and BS Contact VRML and i cannot see the VRML
World on your page.
People often use the following.
The Object tag is read by IE and ignored by Netscape,
while the Embed Tag is read by Netscape and ignored by IE.
Therefore you see the VRML in both browsers.
<OBJECT WIDTH="70%" HEIGHT="23%" BORDER=0>
<PARAM NAME="SRC" VALUE="MyWorld.wrl">
<EMBED SRC="MyWorld.wrl"
TYPE="model/vrml"
WIDTH="70%" HEIGHT="23%"
BORDER=0>
</EMBED>
</OBJECT>
Herbert
--
Herbert Stocker (aka hersto)
http://www.hersto.de
www.bitmanagement.de
|