First upload

This commit is contained in:
Unknown
2018-02-04 22:48:52 -05:00
parent 2e2b659cfb
commit e3359307a9
11 changed files with 296 additions and 0 deletions

11
win/test.jsx Normal file
View File

@@ -0,0 +1,11 @@
var Path = arguments[0];
alert(Path)
var saveFile = File(Path + "/test.txt");
if(saveFile.exists)
saveFile.remove();
saveFile.encoding = "UTF8";
saveFile.open("e", "TEXT", "????");
saveFile.writeln("Testing...");
saveFile.close();