DenisMedvedev
9 years agoContributor
How to create your own plugin?
I have created ExcelOLEcode.js file for working with Excel, see below code: function Create(fileName)
{
oWorkBook = Sys.OleObject("Excel.Application").Workbooks.Add();
oWorkBook.SaveAs(fileName)...
- 9 years ago
Script extensions are a little finicky. They want everything just so.
Perhaps you've created a tcx file where everything is in a subdirectory (ExcelExtension)? If so, then repackage so that the files are at the top level (no subdirectory).