Sergey Osokin
My feedback
356 results found
-
3 votes
Nihiltres, UnitValue is an object with properties
baseUnit - type of UnitValue data type
type - type of String data type
value - type of Numeric data type.
When using unary operator on object, the underlying value property of the object is modified.
Example:
var uv = new UnitValue(2, "px");
"-uv" will result in uv.value modified from "2" to "-2" and stays as Numeric data type.
Any unary operator on object as whole will return the object itself.
Alternatively you can achieve the result you expected by directly manipulating the value instead of the object
var uv = new UnitValue(2, "px");
"-uv.value" this will return the Numeric data type with negating the value, in this case it will convert the number 2 to -2
I do see it is working as documented, I would like to hear your view with the above information.
Unary operators (~, !,…
An error occurred while saving the comment
Sergey Osokin
supported this idea
·
-
16 votes
Sergey Osokin
supported this idea
·
-
9 votes
An error occurred while saving the comment
Sergey Osokin
commented
It's not a built-in solution, but it might be better than nothing.
1) Duplicate text frame
2) Apply new font using the Eyedropper Tool
3) Select the duplicate and the original text
4) Run the free MatchColors script
5) Done. Letter colors are back -
8 votes
Sergey Osokin
supported this idea
·
-
14 votes
Sergey Osokin
supported this idea
·
-
12 votes
Sergey Osokin
supported this idea
·
-
6 votes
Sergey Osokin
supported this idea
·
-
8 votes
Sergey Osokin
supported this idea
·
-
35 votes
Sergey Osokin
supported this idea
·
-
8 votes
Sergey Osokin
supported this idea
·
-
18 votes
Sergey Osokin
supported this idea
·
-
9 votes
Sergey Osokin
supported this idea
·
-
30 votes
Sergey Osokin
supported this idea
·
-
6 votes
Sergey Osokin
supported this idea
·
-
3 votes
Sergey Osokin
supported this idea
·
-
4 votes
Sergey Osokin
supported this idea
·
-
17 votes
Sergey Osokin
supported this idea
·
-
283 votes
Eyedropper is now available in the color picker dialogue to help you select color from your artwork.
Please download the latest version of Illustrator (V29.2 and above) to experience the changes and let us know your feedback.
Sergey Osokin
supported this idea
·
-
21 votes
Sergey Osokin
supported this idea
·
-
77 votes
With the v29.2, Illustrator now allows you to export into Ai and EPS format via the export for screen dialogue.
You will also have the ability to fine-tune the these documents through the advance settings.
We hope you would find the changes useful, please let us know your feedback or comment below.
Sergey Osokin
supported this idea
·
I agree that the text in the official reference is misleading. Although it's not a problem to convert the object type to a number using Number() or the .as() > new UnitValue(2, "px").as("px") method and then change the sign of the number