Dave Myron
My feedback
2 results found
-
4 votes
An error occurred while saving the comment Dave Myron supported this idea · -
515 votes
Hi Everyone,
The fix has been rolled out and is available in our latest release build – 24.1.1 for Win and 24.1 for Mac which is available worldwide now.
What’s new in 24.1: https://helpx.adobe.com/illustrator/using/whats-new.html
You can update to the latest release using Creative Cloud desktop App: https://helpx.adobe.com/in/creative-cloud/help/creative-cloud-updates.html
Thank you for all the feedback.
Dave Myron supported this idea ·
It seems that the Extendscript File object write() and writeln() do this as well. It's *very* surprising to silently convert characters.
For example, this explicit use of write converts the newline to a carriage return:
`var f = new File("/tmp/test.log"); f.open("w"); f.write("test\n"); f.close();`
Results:
```> hexdump /tmp/test.log
0000000 6574 7473 000d
0000005
```
Same results if I replace `write("test\n")` with `writeln("test")`!
Terrible!