Hi guys
Creating new .txt file in extendscript thru new File returning result by deleting all code in extend script.
Example
-------------------
var fPerCode="manjunath";
var myFileP=new File($.fileName);
var myFilePtS=myFileP.parent.fsName.toString();
myFileP.open('w');
myFileP.write(fPerCode);
myFileP.copy(myFilePtS+"\\"+"Mytools_icons"+"\\"+"name.txt");
myFileP.close();
alert("path to fullper.bat file "+"\n"+myFilePtS+"\\"+"Mytools_icons"+"\\"+"name.txt");
If you run the above code, You see the result by clearing all the above code.
can someone help to solve this?