Sergey Osokin
My feedback
376 results found
-
5 votes
Sergey Osokin
supported this idea
·
-
37 votes
This was fixed in the Beta 30.8.0.7 and the team intends to push it into the next general July release.
Meanwhile, please use the dedicated Transform panel or the Properties panel as a workaround.
If you find anything else — please report and upvote, it really helps.
Sergey Osokin
supported this idea
·
-
10 votes
Sergey Osokin
supported this idea
·
-
5 votes
Sergey Osokin
supported this idea
·
-
26 votes
Sergey Osokin
supported this idea
·
-
22 votes
Sergey Osokin
supported this idea
·
-
5 votes
Sergey Osokin
shared this idea
·
-
4 votes
Sergey Osokin
supported this idea
·
-
40 votes
Sergey Osokin
supported this idea
·
-
7 votes
Sergey Osokin
supported this idea
·
-
9 votes
Sergey Osokin
supported this idea
·
An error occurred while saving the comment -
10 votes
Sergey Osokin
supported this idea
·
An error occurred while saving the comment
Sergey Osokin
commented
I created the free AlignToArtboards script for this purpose:
https://github.com/creold/illustrator-scripts/blob/master/md/Item.md#aligntoartboards
The script allows you to align selected objects to their parent artboards. -
2 votes
Sergey Osokin
supported this idea
·
-
2 votes
An error occurred while saving the comment
Sergey Osokin
commented
The tab character isn't considered the same separator as a space (\s). Adobe's textFrame.words collection is very unreliable. For example, two words with a dot and no space, "lorem.ipsum," are considered one word by the parser. You have to create your own word parser for textFrame, taking into account the possible separator characters.
Sergey Osokin
supported this idea
·
-
40 votes
Sergey Osokin
supported this idea
·
-
3 votes
Sergey Osokin
supported this idea
·
-
5 votes
Sergey Osokin
supported this idea
·
-
13 votes
Sergey Osokin
supported this idea
·
-
3 votes
Sergey Osokin
supported this idea
·
-
11 votes
The fix has been pushed into the latest 30.3 general release. Please update, check, and comment back if it still happens.
An error occurred while saving the comment
Sergey Osokin
commented
I tested the script in 2026 v30.3.0.182. Yes, now white is ignored during tracing, unlike in previous releases
if (app.documents.length && app.selection.length) {
var item = app.selection[0];
if (item.typename == "RasterItem") {
var trace = item.trace();
var opt = trace.tracing.tracingOptions;
opt.tracingMethod = TracingMethodType.TRACINGMETHODABUTTING;
opt.tracingMode = TracingModeType.TRACINGMODEBLACKANDWHITE;
opt.tracingColorTypeValue = TracingColorType.TRACINGFULLCOLOR;
opt.tracingColors = 2;
opt.ignoreWhite = true; // Ignore White
trace.tracing.tracingOptions = opt;
trace.tracing.expandTracing();
}
}An error occurred while saving the comment
Sergey Osokin
commented
With the appearance of the Ignore Color checkbox, scripts have another big problem besides ignoreWhite. If a user creates a custom preset with Ignore Color enabled and selects a color, and then tries to automate the use of this preset from a script, the scripts cannot load the data about the Ignore Color checkbox from the preset. In the mentioned beta version 30.4.0.80, this issue still persists.
Example:
(function (){
var image = app.selection[0].trace();
var preset = app.tracingPresetsList[19]; // User index of custom preset
image.tracing.tracingOptions.loadFromPreset(preset);
app.redraw();
image.tracing.expandTracing().selected = true;
})();
Sergey Osokin
supported this idea
·
I don't think such a feature will come soon. In such a task there may be a lot of questions about solution methods, as Egor wrote earlier. I think it is possible to automate at least the drawing of the Bento Grid using scripts.