Last active
January 7, 2019 04:38
-
-
Save yamadaaaaaaa/4a315dd7dd7cd1d158cd6b229d53fe7f to your computer and use it in GitHub Desktop.
textCreate.jsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var myText = "After Effects noui"; | |
var myFile = new File("D:/text.txt"); | |
myFile.open("w"); | |
myFile.write(myText); | |
myFile.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment