- From: Mark Groen <mark@markgroen.com>
- Date: Wed, 26 Apr 2006 09:43:11 -0700
- To: public-web-plugins@w3.org
- Cc: "Howard, John Gideon" <johoward@indiana.edu>
On Wed, 2006-04-26 at 12:12 -0400, Howard, John Gideon wrote:
> I'm wondering if anyone can point me in the right direction. Given IE
> 6+ new requirement that a user must activate the ActiveX control,
> where can I find example code that is XHTML compliant, loads an inline
> quicktime movie, and does not require user interaction to start the
> movie. Thank You.
Simply load your movie externally instead of embedding it in-line like
you used to, some simple javascript works well:
in your xhtml:
<script type="text/javascript" src="/scripts/intro1.js"></script>
intro1.js:
document.write('<object type="application/x-shockwave-flash"
data="intro1.swf" height="62" width="672"><param name="movie"
value="intro1.swf" /><img alt="" src="images/intro1.gif" height="62"
width="672" /></object>')
More ways from Microsoft:
http://msdn.microsoft.com/workshop/author/dhtml/overview/activating_activex.asp
-- 
Warm Regards,
Mark Groen
www.mgwebservices.ca
Received on Wednesday, 26 April 2006 20:23:20 UTC