How to write text to a text file by Photoshop JavaScript?

前端 未结 5 695
隐瞒了意图╮
隐瞒了意图╮ 2021-02-07 17:50

I took a look at Photoshop CS5 Scripting Guide and Photoshop CS5 JavaScript Reference, but I couldn\'t find out a method to write text to a plain text file. Is there any way to

5条回答
  •  北恋
    北恋 (楼主)
    2021-02-07 18:08

    I found the docs lacking but came up with this as a method to create and write to a new file in CS6:

    var s = "My string data here";
    var file = new File();
    var fileNew = file.saveDlg("Save new file");
    fileNew.open("w");
    fileNew.write(s);
    fileNew.close();
    

提交回复
热议问题