Types-for-Adobe
Types-for-Adobe copied to clipboard
TypeScript types for Adobe: AfterEffects, Animate, Audition, Illustrator, InDesign, Photoshop, Premiere, ScriptUI.
Extendscript allows you to multiply an array of numbers by a scalar. Typescript doesn't allow this. ```javascript var v = [0,.5,1] * 255; v == [0,127.5, 255]; ```
Sorry I keep making all these issues. I'm trying to convert a ton of old scripts to Typescript and finding all kinds of fun things. One is that in the...
The [JS API doc] of Illustrator (2017) contains `typename` fields for almost (if not all) classes. Theses are missing from the `.d.ts`. I guess they're missing from the .xml definitions...
The Layer type is undefined under adobe after effects
In some of the issues, I've seen that you'd love if people send you fresh definitions of XML files for various Adobe products. First I wanted to present theses as...
When I found this repository, I thought that you can generate the same but up-to-date TS definitions with this script: https://github.com/pravdomil/ExtendScript-XML-to-TypeScript However, by doing so and comparing results, I noticed...
This API is missing from the type definitions. http://estk.aenhancers.com/10%20-%20Scripting%20Access%20to%20XMP%20Metadata/accessing-the-xmp-scripting-api.html I'm not sure if you have a fancy way of generating these type files. If not, I can try to make...
Tested with `Group.alignChildren` for InDesign CC 2018. I assume this issue affects the `_Control` `alignment` definition as well as other `alignChildren` definitions. http://jongware.mit.edu/idcs6js/pc_Group%20(SUI).html according to this(as well as testing in...
Argument of type '"tab"' is not assignable to parameter of type '"treeview"' video: https://streamable.com/odl8mk 
Should be all good, but requested a review since it's my first time working with the repo. - Add new folder/files for 22.6 - Add `keyLabel` and `setLabelAtKey` methods to...