AxGetObject - method of the Pm object
Description:
Creates a reference to ActiveX object.
Syntax:
Object AxGetObject(String Type, String Class)
Parameters:
Type | (String) Reference type.
Currently implemented "new" = creating new object. |
Class | (String) Identifier (class) of the object. |
---|
Example:
Creates a reference to ActiveX and HTTPRequest object
JavaScriptSelect and copy to clipboard
var oReq = Pm.AxGetObject("new", "Microsoft.XMLHTTP");