http://www.perlmonks.org?node_id=696164


in reply to Re^4: Reading from an ActiveX Object
in thread Reading from an ActiveX Object

This has not a lot to do with ActiveX itself.

It's just an XMLHttpRequest which retrieves the page contained in 'url'.
The activeX is only used in MS browsers, the other (imho normal browsers) will be using:
req = new XMLHttpRequest();

So... Find out what 'url' contains and use LWP::Simple or whatever to fetch the page...

GreetZ!,
    ChOas

print "profeth still\n" if /bird|devil/;

Replies are listed 'Best First'.
Re^6: Reading from an ActiveX Object
by GaijinPunch (Pilgrim) on Jul 08, 2008 at 06:58 UTC
    Hmm... I started to go in that direction but it seemed like a dead end... I'll check a bit more.