Fengzhimei@Dot.Net
Designing My Colorful Dream
随笔 - 78,  文章 - 0,  评论 - 196,  阅读 - 15万
After installing the ActiveX update patch, some webpages which contain some ActiveX controls (such as media player) will require users to manually activate such controls by clicking on it or using the TAB key and ENTER key, this is by design for security reason.



But Microsoft has a workaround as well, the key point is load ActiveX controls from external script files. By using document.write, document.createElement or innerHTML, we can bypass this kind of limitation easily.

<!-- HTML File -->
<html>
  
<body leftmargin=0 topmargin=0 scroll=no>
    
<script src="ActiveXCtl.js"></script>
  
</body>
</html>

//ActiveXCtl.js
document.write('<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6">');
document.write('
<param name="URL" value="example.wmv">');
document.write('
<param name="autoStart" value="-1"></object>');

Refer to this MSDN article for detail.
posted on   fengzhimei  阅读(1178)  评论(0编辑  收藏  举报
努力加载评论中...

点击右上角即可分享
微信分享提示