RESOLUTION
To solve this problem, you must move the .ppz file to a subfolder
under the logical root of your user directory.
For example, suppose the file Pres0.ppz is initially in the root of a
folder on a Web Server folder. Through a browser, the file would
have the HTTP address of http://ServerName/Pres0.ppz. The owner of this
folder creates a subfolder called Animations and moves Pres0.ppz into it.
The file now has the address: http://ServerName/Animations/pres0.ppz.
Netscape 3.x can run the file from the subfolder.
In addition to moving the file to a subfolder, the appropriate HREF
entries in the HTML file need to be updated to reflect the change in
the address.
Example
The HTML original code segment for the in-place playing of
the ActiveX Animation looks like this:
<OBJECT CLASSID="clsid:EFBD14F0-6BFB-11CF-9177-00805F8813FF"
WIDTH=800 HEIGHT=200>
<PARAM NAME="File" VALUE="pres0.ppz">
<EMBED WIDTH=800 HEIGHT=200 SRC="pres0.ppz"></EMBED>
<NOEMBED>
This page contains an ActiveX Animation that your browser was unable
to view.
<A HREF="pres0.ppz">Click here to open pres0.ppz fullscreen</A>
</NOEMBED>
</OBJECT>
After moving the ppz file to the Animations subfolder, the code
segment looks like this:
<OBJECT CLASSID="clsid:EFBD14F0-6BFB-11CF-9177-00805F8813FF"
WIDTH=800 HEIGHT=200>
<PARAM NAME="File" VALUE=" Animations/pres0.ppz">
<EMBED WIDTH=800 HEIGHT=200 SRC=" Animations/pres0.ppz"></EMBED>
<NOEMBED>
This page contains an ActiveX Animation that your browser was unable to
view.
<A HREF=" Animations/pres0.ppz">Click here to open pres0.ppz fullscreen</A>
</NOEMBED>
</OBJECT>
NOTE: Microsoft Technical Support does not support modifying HTML code.
You should always work with a copy of your original HTML document.
In addition, the Web Server must be set up to properly serve the ActiveX
Animation MIME file type. Netscape Navigator 3.x does not directly handle
ActiveX Animations by the file type. It must be sent the MIME type of the
file from the Web Server software.
The syntax for the MIME entry is:
application/vnd.ms-powerpoint ppz
NOTE: Microsoft Technical Support does not support modifying third party
Internet server software. If you are unsure about modifying the MIME type
settings, please contact the software vendor for your Internet server
software.
For more information about entering the correct MIME information if you
are using Microsoft Internet Information Server (IIS) or Microsoft Personal
Web Server, please see the following articles here in the Microsoft Knowledge
Base:
142558 Adding Mime Types to Internet Information Server
155730 How to Add MIME Types to Personal Web Server
The products discussed here are manufactured by vendors independent of
Microsoft; we make no warranty, implied or otherwise, regarding these
products' performance or reliability.