Jump to content

automatically activate ActiveX controls


KYKK

Recommended Posts

Basically what you do is create an external JS script that document.writes the ActiveX markup onto the page. That is all.

Link to comment
Share on other sites

Err... the code is on that page... basically what you do is you have

< ... previous markup ... >< ... ActiveX markup ... >< ... more markup ... >

Then you make an external JS file and cut the < ... ActiveX markup ... > into that file, turning it into document.write() statements. Then in its place in the main document, you place a reference to that JS file

< ... previous markup ... ><script src="jsfilewithactivexmarkup.js"></script>< ... more markup ... >

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...