panda functions not visibles from Javascript with IE

I call a function of the plugin from Javascript. For that I declared this in my python file :

base.appRunner.main.test = self.test

and this from Javascript :

plugin.main.test();

I also specified script-origin = “**” in my p3d file.

With firefox, I manage to call the test function but not with Internet Explorer.

Is there anything else to specify for IE to allow communication between panda/python and JS ?

Are you sure you had the right plugin object on the IE side? Other than ensuring you have the right object, I can’t think of anything different between IE and Firefox in regards to calling into Python.

David