mer C
My feedback
83 results found
-
25 votes
Seems to be fixed in the latest release. Please check if it is and comment back if it does not.
-
57 votes
-
36 votes
-
9 votes
-
57 votes
An error occurred while saving the comment -
31 votes
I am happy to share that we have fixed this bug in our latest release – 26.0.0 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
-
17 votes
-
40 votes
I am happy to share that we have fixed this bug in our latest release – 26.3.1 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
-
2 votes
An error occurred while saving the comment mer C commentedA report with similar content has been uploaded.
https://illustrator.uservoice.com/forums/601447-illustrator-desktop-bugs/suggestions/43420380-exported-ai-files-cannot-be-saved-again -
3 votesmer C shared this idea ·
-
6 votes
-
25 votes
-
10 votes
I am happy to share that we have fixed this bug in our latest release – 27.3.1 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
Ankit Goyal
Illustrator Team
-
53 votes
I am happy to share that we have fixed this bug in our latest release – 25.2 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
An error occurred while saving the comment mer C commentedI was able to try Illustrator 25.2 beta, and "do javascript" seems to be working fine.
An error occurred while saving the comment mer C commentedI'm currently waiting for Illustrator 25.2 beta to appear in the Creative Cloud app after joining to the pre-release. It will be some time before I can report back.
mer C shared this idea · -
107 votes
I am happy to share that we have fixed this bug in our latest release – 25.1 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
-
132 votes
I am happy to share that we have fixed this bug in our latest release – 25.0 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
-
57 votes
Please share some real cases for this feature you had in your practice, which could have benefit greatly from having inline graphics. It will help the team to plan it and make it more useful for Ai users, than analogues we have in InDesign and Figma.
-
26 votesCompleted (Comments Open) · 2 comments · Illustrator (Desktop) Bugs » File Save, Import and Export · Admin →
An error occurred while saving the comment mer C commentedIt seems to crash when the brush name is Japanese (or probably a multi-byte string). When I changed the name to an alphanumeric string, it did not reproduce.
ブラシの名前が日本語(たぶんマルチバイト文字列)だとクラッシュするようです。英数字のみの文字列に変更したところ,再現しませんでした。
mer C shared this idea · -
32 votes
I am happy to share that we have fixed this bug in our latest release – 24.3.0 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
-
21 votes
I am happy to share that we have fixed this bug in our latest release – 25.0 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
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. Keep it coming!
Problem Description:
In Illustrator 2021(25.2.3), the problem is reproduced when exporting JPEG images using "Export for Screens" via script instead of GUI.
Environment:
• macOS 10.14.6
• Illustrator CC 2018(22.1.0)-2021(25.2.3)
Steps to Reproduce:
Open an appropriate ai file and execute the script in the [Code to execute] section to export JPEG image
Requirements:
• ExportForScreensType should be one of JPEG
• Specify AntiAliasingMethod.ARTOPTIMIZED for exportForScreensOptions.antiAliasing
Actual Result:
The exported image has jaggies.
Expected Result:
The exported image looks smooth, befitting an ARTOPTIMIZED image.
Any Workarounds:
• Export the document manually, without going through any scripts
• Set ExportForScreensType to SE_PNG24
• Specify AntiAliasingMethod.TYPEOPTIMIZED for exportForScreensOptions.antiAliasing
Code to execute:
var exportForScreensOptions = new ExportForScreensOptionsJPEG() ;
exportForScreensOptions.antiAliasing = AntiAliasingMethod.ARTOPTIMIZED ; // <--trigger
var itemToExport = new ExportForScreensItemToExport() ;
itemToExport.artboards = '1' ;
itemToExport.document = false ;
var doc = app.documents[0] ;
doc.exportForScreens(Folder.desktop, ExportForScreensType.SE_JPEG100, exportForScreensOptions, itemToExport) ;