Ten_A
My feedback
176 results found
-
11 votes
The fix has been pushed into the latest 30.3 general release. Please update, check, and comment back if it still happens.
Ten_A
supported this idea
·
An error occurred while saving the comment -
31 votes
Verified this bug was fixed with 27.9.3 92 build.
An error occurred while saving the comment
Ten_A
commented
2024として起動しているのではなくて表示が2024になってしまっているって事ですね。
10コほど下にある投稿ですでに報告されてて開発側も検討に入ってますよ。 -
5 votes
Ten_A
shared this idea
·
-
13 votes
An error occurred while saving the comment
Ten_A
commented
イメージ追加しておきますね
Ten_A
shared this idea
·
-
22 votes
Ten_A
supported this idea
·
-
8 votes
An error occurred while saving the comment
Ten_A
commented
サンプルをアップしておきます。
Ten_A
shared this idea
·
-
11 votes
Ten_A
supported this idea
·
-
36 votes
Ten_A
supported this idea
·
-
2 votes
Ten_A
supported this idea
·
-
12 votes
An error occurred while saving the comment
Ten_A
commented
It is a case where the angle created by the handles of the anchor points at both ends of the perpendicular line and the original perpendicular line is an obtuse angle rather than a long handle.
In this case, only the center part of the curve will be calculated and reproduced with a normal offset. If the object is rotated slightly and this normal part reaches one of the anchor points, the offset will be processed correctly. Therefore, the problem is reproduced only in a narrow range of inclination, such as plus or minus 10 or more degrees.An error occurred while saving the comment
Ten_A
commented
サンプル追加しますね。
Ten_A
shared this idea
·
-
10 votes
The team reports they tried to fix this (again) in the latest Beta Build 30.4.0.135. Kindly install it (or update, if you have Beta already installed) and check if the problem is indeed fixed before it gets pushed into the regular build.
Ten_A
supported this idea
·
-
21 votes
Ten_A
shared this idea
·
-
16 votes
Ten_A
supported this idea
·
-
19 votes
An error occurred while saving the comment
Ten_A
commented
Probably, confusing "均等配置" with "中央揃え".
Ten_A
shared this idea
·
-
108 votes
Fixed in the latest product build 28.1.0.141.
製品版28.1.0.141にて修正対応されています。
Ten_A
supported this idea
·
An error occurred while saving the comment
Ten_A
commented
提供されたサンプルファイルを確認しましたが、Illustratorネイティブ部分には正常に保存されていました。しかし、他のアプリケーションが利用するPDF部分のContentsストリームが完全に欠落する為に、このサンプルファイルを他のアップリケ―ションに配置する際になにもオブジェクトが無い状態のドキュメントが配置されてしまいます。
このことからバックグラウンドでの保存処理時のPDF生成処理に不具合があると考えられます。
この件に関しては「バックグラウンドで保存」が実装された当初から安定性に問題がある事が指摘されていました。今回発覚した合成フォント絡みの問題はCJK言語に関連する機能であるため永らく発見できずにいた問題であると考えられます。よって、バックグラウンドでの保存処理時に関わるマルチバイト系の取り扱いについて重点的に確認をお願いしたいと思います。 -
1 vote
Guides in Illustrator, unlike in InDesign, are considered to be objects and exist within layers. As per the comment by Ten_A, if your guides are contained within a locked layer, they won’t be selectable.
If you wish to change this behavior, you should upvote this request: https://illustrator.uservoice.com/forums/333657-illustrator-desktop-feature-requests/suggestions/37211029-make-guides-to-be-like-in-indesign
An error occurred while saving the comment
Ten_A
commented
ちょっと興味があったのでダウンロードしてみました。ガイドが入ったレイヤーがロックされているのでロックを解除すると操作可能ですね。
-
20 votes
Ten_A
shared this idea
·
-
7 votes
Ten_A
shared this idea
·
-
53 votes
This problem is reportedly fixed in the latest Beta Build 30.5.0.18. You can update and test if it’s truly gone.
However, please not there are some known issues with this particular build:
- Opening recent files from Home Screen Recent section is not working (opening recent files from File > Open Recent Files works fine).
- Generative Expand does not open its own HUD when used after Generate Vector, Generative Shape Fill, or Sketch to Vector. Instead, the previous tool's HUD is displayed and Generative Expand remains inaccessible. Workaround: Ungroup the generative content first, then apply Generative Expand.
- Half of Astute Graphics plugins can’t get loaded. Both teams are now aware of the problem.
An error occurred while saving the comment
Ten_A
commented
An image is attached to aid for understanding.
Ten_A
shared this idea
·
-
6 votes
Ten_A
shared this idea
·
Illustrator ver.28.3
macOS13.6.3/imac27inch Intel/32GBmem+1TB SSD
In the sample code below, the white areas of the image are not ignored even though the ignoreWhite property is set to true.
var p = app.activeDocument.placedItems.add();
p.file = File.openDialog("Select Image");
var t = p.trace();
t.tracing.tracingOptions.viewMode = ViewType.TRACINGVIEWVECTORTRACINGRESULT;
t.tracing.tracingOptions.tracingMode = TracingModeType.TRACINGMODEBLACKANDWHITE;
t.tracing.tracingOptions.tracingColorTypeValue = TracingColorType.TRACINGLIMITEDCOLOR;
t.tracing.tracingOptions.palette = "ライブラリなし";
t.tracing.tracingOptions.colorGroup = "グレー";
t.tracing.tracingOptions.tracingColors = 30;
t.tracing.tracingOptions.colorFidelity = 100;
t.tracing.tracingOptions.threshold = 200;
t.tracing.tracingOptions.grayLevels = 250;
t.tracing.tracingOptions.pathFidelity = 10;
t.tracing.tracingOptions.cornerFidelity = 100;
t.tracing.tracingOptions.noiseFidelity = 50;
t.tracing.tracingOptions.tracingMethod = TracingMethodType.TRACINGMETHODOVERLAPPING;
t.tracing.tracingOptions.fills = true;
t.tracing.tracingOptions.strokes = false;
t.tracing.tracingOptions.maxStrokeWeight = 10;
t.tracing.tracingOptions.snapCurveToLines = true;
t.tracing.tracingOptions.ignoreWhite = true;
app.redraw();
t.tracing.expandTracing();
Testing with ver. 27.9.2 shows that the ignoreWhite property is handled as set.