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
Original issue reported on code.google.com by
tcl...@gmail.com
on 24 Jul 2014 at 6:14