Skip to content

Instantly share code, notes, and snippets.

@kuyseng
Created May 26, 2012 03:34
Show Gist options
  • Save kuyseng/2792000 to your computer and use it in GitHub Desktop.
Save kuyseng/2792000 to your computer and use it in GitHub Desktop.
javascript: indesign write text file
function write_text_file(text, path, file_name) {
// alert(my_file.name.split("__")[0]);
var file_full_url = path + "/" + file_name;
var my_file = new File(file_full_url);
my_file.open("w");
my_file.write(text);
my_file.close();
return my_file;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment