Ask Your Question

Revision history [back]

Somewhat difficult as an ActiveX control can be embedded directly in a page with an <object ... >...</object> tag with a classid property (that contains the string "clsid:...") but due to a patent issue (long since resolved) MS couldn't allow folks to do that directly, instead they had to add JavaScript code on the page to "create" the object tag dynamically and thus obscuring the use of an ActiveX object. Often times the JavaScript code would check the browser it was running and only instantiate the object if the browser supported ActiveX.

You can try a filter such as frame contains "<object" and frame contains "clsid:" for a simple text search that works for me on a page known to have an ActiveX control added by JavaScript.