Could anybody tell me if there is a way to solve this different behaviour in Mozilla 1.4?
Thanks in advance. The code is the following:
---------
var xpiDoc = "data.txt";
var xpiDll = "libsoh323.dll";
var err = initInstall("myApp", "myApp", "1.0.0");
var f = getFolder("Program");
setPackageFolder(f);
addFile(xpiDoc);
addFile(xpiDll);
var ignoreErr = execute("instala.exe", true);
if (err==SUCCESS)
err = performInstall();
else
cancelInstall(err);