I'm looking for a way to call LibreOffice Calc from js script (for example open existing file on disk). I know that I can open Excel using ActiveXObject, but with Calc it not working.
<script type="text/javascript">
function test() {
var Excel = new ActiveXObject("Excel.Application");
Excel.Visible = true;
Excel.Workbooks.Open("teste.xlsx");
}
</script>
update: first priority is IE