Sergey Osokin
My feedback
226 results found
-
19 votes
This is obviously not fixed and requires further inspection.
Sergey Osokin supported this idea · -
100 votes
The team has encountered several issues with this feature. It requires them to change the basic algorithms and it is going to take them more time than anticipated.
While it still works in Beta 28.8.0.7, the next Beta build will have Inside/Outside aligned strokes for open paths disabled. The Beta is scheduled to be live on 7th of August.
Once this is ready to be enabled back, the team will update the status.
Sergey Osokin supported this idea · -
433 votes
Starting from the February 2024 release, version 28.3, this option is no longer enabled by default for new documents. If you had hyphenation enabled in an existing document, Ai will respect this.
Sergey Osokin supported this idea · -
34 votesSergey Osokin supported this idea ·
-
25 votesSergey Osokin supported this idea ·
-
22 votesSergey Osokin supported this idea ·
-
8 votesSergey Osokin supported this idea ·
-
22 votes
An error occurred while saving the comment An error occurred while saving the comment Sergey Osokin commentedExtendScript from a custom preset loads Colors: 100 instead of 10, and what appears white to the user at first is RGB 253,253,253,253, so the Ignore White checkbox in the preset doesn't work.
An error occurred while saving the comment Sergey Osokin commentedTake a look at tracing-palette-bug.mp4. I am assuming that for the tracingColorTypeValue attribute, the TracingColorType.TRACINGFULLCOLOR and TracingColorType.TRACINGLIMITEDCOLOR keys work in reverse. And we can't set the palette color limits correctly.
Look at tracing-preset-bug.mp4. The script should load the default settings for tracing. But what we see, again like in the previous video, we have problems with the number of colors for the Palette. This could be tolerated when in CC 2019 the result after the script was like manually selecting a preset, but in CC 2023 and this is broken and users can't trust the automation of tracing.
I think the Adobe team needs to do a full SDK revision for ExtendScript on tracing methods and attributes.
Sergey Osokin supported this idea · -
78 votes
Dear users,
You can now see a new 'save selection' button on the layers panel which enables to select multiple objects and save it for later use. Please try it out in BETA and let us know your feedback.
An error occurred while saving the comment Sergey Osokin commentedA few questions:
1) Will the linking of objects be based on a GroupItem entity?
2) Will the linking feature be added to the ExtendScript language?
3) Accordingly, will script and extension authors be able to interact with user linked objects? Or will the new feature break all previously created third-party scripts?When programming scripts in Illustrator, there are containers based on groups (GroupItems). These include Clipping Group, a group that has a "clipped" attribute, and editable Compound Shapes, which place objects inside an invisible group. By the way, we cannot access objects inside compound shapes in scripting.
-
7 votesSergey Osokin supported this idea ·
-
11 votesSergey Osokin supported this idea ·
-
8 votesSergey Osokin supported this idea ·
-
15 votesSergey Osokin supported this idea ·
-
11 votesSergey Osokin supported this idea ·
-
16 votesSergey Osokin supported this idea ·
-
16 votesSergey Osokin supported this idea ·
-
3 votesSergey Osokin shared this idea ·
-
3 votesSergey Osokin supported this idea ·
-
18 votesSergey Osokin supported this idea ·
-
8 votesSergey Osokin supported this idea ·
In CC 2023 and CC 2024, "Ignore White" was replaced with "Ignore Color" in the trace preset, but Adobe engineers did not add the ability to control the boolean state of this checkbox and the color values in the color picker. Once again, the needs of users and independent developers who want to automate the design routine were ignored.
options.tracingMethod = TracingMethodType.TRACINGMETHODABUTTING;
options.ignoreWhite = true; // With v.27 / 28 it's a useless method
What changes have I found in plugin SDK versions, but not in ExtendScript?
Adobe Illustrator SDK CC 2022 file AIVectorize.h new lines:
/** Tracing option key for whether to ignore "color" background or not. Boolean. New for CS3. */
#define kTracingShouldIgnoreColorsKey "adobe/vectorize/output/shouldIgnoreColors"
/** Tracing option key to store colors that have to be ignored from tracing option. Boolean. New for CS3. */
#define kTracingIgnoreColorsKey "adobe/vectorize/output/ignoreColors"
#define kTracingIgnoreWhiteDefault (false)
Adobe Illustrator SDK CC 2024 file AIVectorize.h new lines:
constexpr AIRGBColor kTracingWhiteColor = { 65535, 65535, 65535 };
constexpr AIRGBColor kTracingIgnoreColorDefault = kTracingWhiteColor;