Christopher wrote:
...
> this is what I have coded:
>
> <OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
> width="420" height="240"
> CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
> <param name="src" value="01.mov">
> <param name="controller" value="false">
> <param name="cache" value="true">
> <param name="hotspot244" value="sma02qt.html">
> <param name="hotspot129" value="sma11qt.html">
> <param name="hotspot139" value="sma09qt.html">
> <embed src="X.qti" QTSRC="01.mov" width="420" height="240"
> cache="true" CONTROLLER="false" type="video/quicktime"
> PLUGINSPAGE="http://www.apple.com/quicktime/download/"
> hotspot244="sma02qt.html" hotspot129="sma11qt.html"
> hotspot139="sma09qt.html"></EMBED>
> </OBJECT>
> --
That's exactly right (and it works, too).
Then Rusty wrote:
> Am I not correct in my thinking that once you had
> already visited a page with the ActiveX control
> (as I have done) that it is not necessary to do it again each time?
That's also correct. Once your visitor has the ActiveX control
installed, the EMBED tag works exactly as it always has.
BUT:
It does no harm to use this every time; it's just some extra work.
A search engine can sometimes lead users to your internal pages,
bypassing any gateway; using OBJECT every time makes this
unimportant.
The OBJECT tag with CLASSID prevents hijacking on IE for Windows
every time, even if your Web server doesn't have its MIME types
configured correctly. That's a good thing.
Regards,
-Steve