sgzwiz / np-activex

Automatically exported from code.google.com/p/np-activex
0 stars 1 forks source link

Cannot open microsoft word/excel file directly from the link #344

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
How to open microsoft word / excel file directly from the link?

In Internet Explorer this function works like a charm:
    function OpenFileLinks(fileURL) {
    var newActiveXObj = new ActiveXObject('Word.Application');
    console.log(newActiveXObj);
    newActiveXObj.Visible = true;
    newActiveXObj.Documents.Open(fileURL);
    }
But the function above does not work in Chrome after installed this extension.

The extension is working properly in my page.

Could you help me to find the solution for this?

Thank you so much in advance.

Chhunly

Original issue reported on code.google.com by tcl...@gmail.com on 24 Jul 2014 at 6:14