Reputation: 78
I am trying to access a firebreath plugin from js using new ActiveXObject(servername.typename) ?
I am not sure if I am feeding the correct name , I interpreted servername as by plugin name & typename as pluginNameAPI class name .
When trying to create an ActiveXObject using this naming convention I get error "Automation server can't create object".
Upvotes: 0
Views: 181
Reputation: 206
In my older FireBreath project the ActiveX Object name is taken from these params in PluginConfig.cmake (separated with dot):
So I can instantiate the plugin with
o = new ActiveXObject("MyCompany.MyPlugin");
Upvotes: 1