quote:
Originally posted by matty
FnSaveMethods.js:
function SaveInterface() {}
js code:
var TextFile = FileSO.OpenTextFile(FilePath, 2);
Should be:
js code:
var TextFile = FileSO.OpenTextFile(FilePath, 2, true, -1 /*UNICODE*/);
Thanks for that. I've fixed it, and I'll re-upload it in a moment...
quote:
Originally posted by Spunky
quote:
Originally posted by whiz
Known Issues
no validation of numbers (for example, it will allow "text" as a valid height measurement)
no validation of matching ID's (for example, two controls with the name "EdtTest")
If you need help with these, PM me and I will help
I can probably do the first one, but I'm not sure about the second. Would something like this work:
js code:
for (var X in WndLstId)
{
if (!objWnd.GetControlText("EdtId") == WndLstId[X])
{
// save code here...
}
}
EDIT: actually, I've changed my mind. I don't think I can do the first one either.