Skip to content

Sergey Osokin

My feedback

356 results found

  1. 11 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    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  · 
  2. 78 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    I wonder if the Illustrator team will add support for calling this center alignment command in scripts, as they have done for other Align commands: app.executeMenuCommand("Horizontal Align Left")

    Sergey Osokin supported this idea  · 
  3. 26 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    To auto-rename swatches, you can use the free BeautifySwatchNames or BeautifySwatchNames Lite script, which includes 31k+ and 4k+ color names: https://github.com/creold/illustrator-scripts/blob/master/md/Color.md#beautifyswatchnames

    Sergey Osokin supported this idea  · 
  4. 32 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  5. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    Try replacing the object selection method with switching the Boolean selection property instead of assigning the app.selection collection. This will increase processing time, but it currently works for me on AI v30.1 Mac.

    app.activeDocument.selection = null;
    for (var i = 0; i < itemsToProcess.length; i++) {
    var item = itemsToProcess[i];
    item.obj.textRange.fillColor = item.col;
    item.obj.selected = true;
    app.activeDocument.defaultFillColor = item.newCol;
    item.obj.selected = false;
    }

    Update: I'm confused. A day has passed, and your original script worked for me in v30.1 without any problems. Although yesterday I also saw that the cycle was interrupted with error 8702. I restarted Illustrator on Mac for a clean test, and your original script works without errors again. This is very strange.

    An error occurred while saving the comment
    Sergey Osokin commented  · 

    The error "Error 8702: there is no active document" or another variant "there is no document" occurs not only with defaultFillColor on Mac OS in Adobe Illustrator 2026, but also in rare other types of scripts. On Mac OS with Adobe version 2025 and below, as well as on Windows with Adobe version 2026, there are no problems with your color replacement script.

    For example, read a topic from four years ago on a forum about how a collection of open documents breaks down and documents disappears[0]. It seems to me that the problem is similar here, the script and the Illustrator forget that there is an open document.
    https://community.adobe.com/questions-652/script-to-save-close-reopen-and-continue-error-8702-there-is-no-document-789390

  6. 8 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  7. 22 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  8. 4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  9. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin shared this idea  · 
  10. 7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  11. Artboards with the same number / missing number

    225 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    My example of duplication in a file with a library of pictograms: 300, 302, 302, 304, 304, 306, 306, 308, 308, 310, 310. Moreover, this happened simultaneously in two open files. After restarting the Illustrator, the numbers became correct. macOS, CC 2026 v30.0.

    Sergey Osokin supported this idea  · 
  12. 17 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  13. 18 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  14. 22 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  15. 4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  16. 4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  17. 11 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  18. 13 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
  19. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    Mathematically, a gradient is generated by calculating each point based on the left and right colors and the location of that point. The computations are performed by color channels, so parasitic hues appear in the final color of a point. The perceptual gradients in Photoshop and Illustrator use the OKLAB space, which has issues with a parasitic magenta hue in the case of interpolation between white and blue. And here it affects that the transformations between CMYK and OKLAB do not go directly, but probably through RGB, which has a greater effect on the appearance of extra channels in CMYK. The paid GradientBlender script will have the same problem with blue in OKLAB mode. This is a common algorithm problem

  20. 6 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Sergey Osokin supported this idea  · 
← Previous 1 3 4 5 17 18