Niccolo Venturoli
unread,Feb 20, 2012, 1:07:29 PM2/20/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ff-activex-host, d.p...@labbit.it
Can I create objects directly from javascript without using the
<object> tag inside the html code?
IE lets you create objects like this:
var a = new ActiveXObject(clsid)
a.myMethod();
with ff-activex-host it doesn't seem to be possible.
We tried this code:
var ax = document.createElement('OBJECT');
ax.setAttribute('type', 'application/x-itst-activex');
ax.setAttribute('clsid', '{36299202-09EF-4ABF-ADB9-47C599DBE778}');
but it doesn't work too... does this plugin instantiate objects only
when it parses the HTML ?