mer C
My feedback
83 results found
-
12 votes
An error occurred while saving the comment An 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 ·
-
105 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 ·
-
62 votesUnder Review · 18 comments · Illustrator (Desktop) Bugs » Effects, Appearance, Graphic Styles · Admin →mer C supported this idea ·
-
66 votes
We have started working on fixing this one.
mer C supported this idea · -
31 votes
Verified this bug was fixed with 27.9.3 92 build.
mer C supported this idea · -
5 votesmer C supported this idea ·
-
11 votesmer C supported this idea ·
-
8 votesmer C supported this idea ·
-
7 votes
An error occurred while saving the comment mer C commentedAs noted in the report, this issue is happening on macOS 12. I am now on 12.7.3 and still reproduce it.
The symptoms that occur are similar to "Illustrator Title Bar Menu Items Stop Responding", but the triggering phenomenon seems to be different.
In macOS 12.7.3, unlike the similar report, the Illustrator menu and Help menu also respond incorrectly, but that is probably due to differences in menu structure between OS versions.
An error occurred while saving the comment mer C commentedAlerts for invalid plugins have changed in Illustrator 2024 (28.2.0). However, the problem is still occurring.
Illustrator 2024(28.2.0) では、無効なプラグインのアラートの種類が変わりました。しかし引き続き不具合は起こっています。
mer C shared this idea ·
## 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.png