 Dave Myron
Dave Myron
    
          
          
        My feedback
2 results found
- 
4 votesAn error occurred while saving the comment Dave Myron supported this idea · 
- 
Option to export to clipping mask boundaries- 
          
            Artboard 1.png 317 KB 
- 
          
            Artboard 2.png 7 KB 
- 
          
            Artboard 1.png 7 KB 
- 
          
            Outline View.PNG 31 KB 
- 
          
            Exports Fine.PNG 35 KB 
- 
          
            Issue Exporting.PNG 28 KB 
- 
          
              Ekran Kaydı 2019-01-04 12.27.16s2.mov 27590 KB 
- 
          
            Screen Shot 08-29-18 at 02.10 PM 001.PNG 214 KB 
- 
          
            CE-serving_.jpg 56 KB 
- 
          
            Untitled-1-01.jpg 63 KB 
- 
          
            Untitled-1-01.png 33 KB 
- 
          
              Illustator_ClippingMask_Bug.ai 188 KB 
- 
          
            Screen_Shot_2017-09-28_at_10.01.53_AM.png 314 KB 
- 
          
            Export.jpg 27 KB 
 521 votesHi 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!