i have extend script java script document i want to write into using python. but it didnt work. does it only work with txt files?
read file. write into file. looked something like this:
with open('C:/Users/mr big/Desktop/xxx1.jsx', 'r') as f2:
text = "xxx"
with open('C:/Users/mr big/Desktop/xxx1.jsx', 'w') as fout:
fout.write(text)
Can you upload a small jsx-file?