Search found 1 match

by yogeshwaran1991
Tue May 08, 2018 2:25 pm
Forum: Photoshop Scripting - General Discussion
Topic: Read .rtf file in adobe photoshop using javascript
Replies: 0
Views: 5766

Read .rtf file in adobe photoshop using javascript

I have a script i want to read .rtf file format in my photoshop. whats wrong in this code? Im using this in MAC . In mac we have only Rtf file format so help me out var txt= File ('~/Desktop/test.rtf'); if (txt.exists == true) { txt.open("r"); var contentStr = txt.read(); txt.close(); var ...