mer C
My feedback
88 results found
-
12 votes
This issue is reported to be fixed in 27.8.1.
Please verify it and comment back!
An error occurred while saving the comment mer C shared this idea · -
2 votesmer C shared this idea ·
-
5 votesmer C shared this idea ·
-
7 votesmer C shared this idea ·
-
30 votesmer C supported this idea ·
-
54 votesmer C supported this idea ·
-
205 votes
This issue has been fixed in 29.2 release. Please update your Illustrator to latest version through Creative Cloud Desktop.
mer C supported this idea · -
12 votes
An error occurred while saving the comment mer C commented## en_US
There has been no follow-up action since then, and the released Illustrator 2025 (29.1.0) is still behaving strangely as reported.
---
## ja_JP
その後追っての連絡はありませんし、リリースされたIllustrator 2025 (29.1.0) は報告した通りのおかしな挙動のままです。
An error occurred while saving the comment mer C commented## en_US
I tried it with Adobe Illustrator (Prerelease) (29.1.0.128).
It is true that try catch now catches the errors, but the error dialog still appears. Executing the script, the dialog appears three times, two for the original error and one for the one specified in catch. Is this the intended behavior?
### Workaround
If specifying `UserInteractionLevel.DONTDISPLAYALERTS`, this would be the ideal behavior.```
(function() {
var doc = app.documents[0] ;
var psdOptions = new ExportOptionsPhotoshop() ;var originalInteractionLevel = app.userInteractionLevel ;
try {
app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS ;
doc.exportFile(new File('~/Desktop/psd_empty_artboard_error.psd'), ExportType.PHOTOSHOP, psdOptions) ;
} catch(e) {
alert('Caught error') ;
} finally {
app.userInteractionLevel = originalInteractionLevel ;
}
})() ;
```### Attached files
* error1.png
* error2.png---
## ja_JP
Adobe Illustrator (Prerelease) (29.1.0.128) で試してみました。
確かにtry catchでエラーを捕捉できるようになりましたが、エラーのダイアログ自体はいまだに出ます。スクリプトを実行すると、もともとあったエラー2つと、catchで指定した1つの計3回ダイアログが表示されます。これは意図した動作でしょうか?
### 回避策
UserInteractionLevel.DONTDISPLAYALERTSを指定すれば理想的な動作になります。```
(function() {
var doc = app.documents[0] ;
var psdOptions = new ExportOptionsPhotoshop() ;var originalInteractionLevel = app.userInteractionLevel ;
try {
app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS ;
doc.exportFile(new File('~/Desktop/psd_empty_artboard_error.psd'), ExportType.PHOTOSHOP, psdOptions) ;
} catch(e) {
alert('Caught error') ;
} finally {
app.userInteractionLevel = originalInteractionLevel ;
}
})() ;
```### 添付したファイル
* error1.png
* error2.pngAn error occurred while saving the comment mer C commentedNoticed that I forgot to write Attached files and Script to execute in the English version. See the Japanese part or this comment.
### Attached files
* error1.png
* error2.png
* empty_artboard.ai
* psd_export.txt### Script to execute
```
(function() {
var doc = app.documents[0] ;
var psdOptions = new ExportOptionsPhotoshop() ;try {
doc.exportFile(new File('~/Desktop/psd_empty_artboard_error.psd'), ExportType.PHOTOSHOP, psdOptions) ;
} catch(e) {
alert('Caught error') ;
}
})() ;
```Moreover, I wrote Illustrator 2024(28.1.0), but it reproduces also with 28.2.0.
mer C shared this idea · -
6 votesmer C supported this idea ·
-
16 votesmer C supported this idea ·
-
4 votesmer C supported this idea ·
-
7 votesmer C shared this idea ·
-
16 votes
We have fixed this issue in 29.0 and 28.7.2 releases.
mer C supported this idea · -
11 votes
An error occurred while saving the comment mer C commentedThis may have been misleading, but specifying the correct property name "lZWCompression" (starting with a lowercase L) can set whether to compress or not.
It means that the typo in the PDF continues to increase those who cannot specify lZWCompression.
mer C shared this idea · -
15 votesmer C shared this idea ·
-
8 votesmer C supported this idea ·
-
110 votesmer C supported this idea ·
-
13 votesmer C shared this idea ·
-
6 votes
An error occurred while saving the comment mer C commenteden_US:
Upon reexamination, I found that the targeted character was incorrect.It seems not the first character, but the character one character back from the tab character in the direction of the beginning is the cause of the misalignment.
ja_JP:
改めて調べると、対象の文字が間違っていました。1文字目でなく、タブ文字から1文字分先頭方向に戻ったところにある文字がずれの原因となるようです。
mer C shared this idea · -
18 votesmer C supported this idea ·
I just noticed that it says to return comments.
This was announced in August 2023 in an Adobe Community article that it had been fixed.
https://community.adobe.com/t5/illustrator-discussions/illustrator-v27-8-improvements-to-share-for-review-and-accessibility-on-macos/m-p/13985620#M375610
But there was nothing in this UserVoice with a status including “under review” or “fixed in beta” until December 24, 2024.
Thank you for fixing it and adding the status.