Sergey Osokin

My feedback

286 results found

  1. 5 votes
    How important is this to you?
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    It's a good start, but the Measure Tool has very limited capabilities right now, not considering Illustrator's many kinds of objects. Also, why would we want to see the area but not be able to copy it or place it immediately with a text object next to the object like the Dimension Tool does?

    Sergey Osokin supported this idea  · 
  2. 16 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  3. 3 votes
    How important is this to you?
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    That's not quite right. After embed(), automatically selected objects appear in the document. They are the app.selection collection. Since you have one object in the example, we access it by index [0]. If Illustrator did not automatically select these objects, it would be more difficult to detect them through JS code.

    Sergey Osokin supported this idea  · 
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    Confirm system alert after locking an object in 29.2 Mac OS. But I would make a safe version of the code for all Adobe versions.

    Solution 1)
    try {
    placedItem.locked = true;
    placedItem.embed();
    } catch (err) {} // try...catch will skip alert in case of an error

    Solution 2)
    placedItem.embed();
    placedItem = app.selection[0]; // Because a new object is created after embedding, so you need to reassign the variable
    placedItem.locked = true;

  4. 8 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  5. 11 votes
    How important is this to you?
    An error occurred while saving the comment
    Sergey Osokin commented  · 

    Confirmed on Mac OS in Illustrator 29.2, this causes frustration. How could the team not test new commands that create a step in an action, but don't work when played back?

    Sergey Osokin supported this idea  · 
  6. 35 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  7. 14 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  8. 5 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  9. 2 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  10. 95 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  11. 4 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  12. 4 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  13. 22 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  14. 4 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  15. 6 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  16. 9 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  17. 14 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  18. 4 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  19. 6 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 
  20. 3 votes
    How important is this to you?
    Sergey Osokin supported this idea  · 

Feedback and Knowledge Base