Sergey Osokin
My feedback
374 results found
-
40 votes
Sergey Osokin
supported this idea
·
-
14 votes
Sergey Osokin
supported this idea
·
-
46 votes
An error occurred while saving the comment
Sergey Osokin
supported this idea
·
-
12 votes
Sergey Osokin
supported this idea
·
-
Holding Shift (or Ctrl) to move RGB sliders together in Color panel doesn’t work when color is white
14 votes
Sergey Osokin
supported this idea
·
-
13 votes
Sergey Osokin
supported this idea
·
-
6 votes
Sergey Osokin
supported this idea
·
-
7 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
·
-
12 votes
Sergey Osokin
supported this idea
·
-
5 votes
Sergey Osokin
supported this idea
·
-
7 votes
Sergey Osokin
supported this idea
·
-
18 votes
Sergey Osokin
supported this idea
·
-
19 votes
Sergey Osokin
supported this idea
·
-
31 votes
Sergey Osokin
supported this idea
·
-
10 votes
An error occurred while saving the comment
Sergey Osokin
commented
It surprises me. I have both Windows 10 + CC 2024 v28.5 and macOS Monterey + v28.5. I don't see the problem fixed in either. The TIFF that the script exports has no embedded profile.
Sergey Osokin
shared this idea
·
-
33 votes
The latest Beta 29.5 52 now remembers these options in the Export As dialog and keeps it between sessions. Please try to test it to see if it works as expected for you and comment back.
Sergey Osokin
supported this idea
·
-
27 votes
Sergey Osokin
supported this idea
·
-
11 votes
Sergey Osokin
supported this idea
·
-
11 votes
Sergey Osokin
supported this idea
·
-
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
commented
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
Sergey Osokin
supported this idea
·
In addition to the fact that InDesign has a QR generator, ExtendScript also includes the ability to create QRs using the createHyperlinkQRCode(string) method. If a QR generator is added to Illustrator, it is absolutely necessary to provide access to it via ExtendScript as well.