Copy link to clipboard
Copied
Hi All,
Is it possible to store the result data in the google spreadsheet? So far i using to store in .txt file.
var csv = new File("~/\Desktop/\Log Report.txt");
var log="";
csv.open("w");
csv.write(log);
csv.close();
alert("Report Saved in Desktop"+"\r"+"Click OK to see the report now")
csv.execute();
Thanks,
K
Copy link to clipboard
Copied
Sheets API | Google Developers
Use the Socket object in conjunction with the Google-provided API and you are all set. Easy-peasy.
Copy link to clipboard
Copied
Thanks Vamitul.. It will get the result values from indesign (while running script) and store the values in google spreadsheet?
Sorry i am novice in Google API