Shoutbox

ActiveX objects reference - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: ActiveX objects reference (/showthread.php?tid=64900)

ActiveX objects reference by Sh4wn on 08-14-2006 at 12:44 PM

Is there any reference about all ActiveX Objects you can use within your script?

I'm not really new to Javascript/Jscript, but I know a very few ActiveX objects.


RE: ActiveX objects reference by RaceProUK on 08-14-2006 at 02:25 PM

ActiveX objects are brought into JScript using
'var obj = new ActiveXObject(<clsid>);'
and then all it's methods and properties are automatically exposed.

Google for more detailed info ;)


RE: ActiveX objects reference by Sh4wn on 08-14-2006 at 02:29 PM

Yes, I know how to create such an object, but is there a list or something with clsid's?


RE: ActiveX objects reference by RaceProUK on 08-14-2006 at 02:32 PM

There isn't a definitive list, since there are a good few hundred thousand COM libraries out there, if not millions. Just find one you want to use, then get it's CLSID using some sort of TypeLib viewer.


RE: ActiveX objects reference by Sh4wn on 08-14-2006 at 02:43 PM

Hmm ok thnx :)