We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 AE api, there is a kindof shorthand when dealing with Properties.
For example, you can create a "Checkbox Control" property:
var p = layer.effect.addProperty("Checkbox Control");
And you can manipulate its sub-property "checkbox" like this (which doesn't work with current typings):
p.checkbox
or, you can do it like this:
p.getProperty("checkbox")
To get this to work in Typescript, you'd need all of AE's effects in your typings, which is a heavy order considering that none of this is documented.
The text was updated successfully, but these errors were encountered:
ok
Sorry, something went wrong.
open pr
No branches or pull requests
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 AE api, there is a kindof shorthand when dealing with Properties.
For example, you can create a "Checkbox Control" property:
And you can manipulate its sub-property "checkbox" like this (which doesn't work with current typings):
or, you can do it like this:
To get this to work in Typescript, you'd need all of AE's effects in your typings, which is a heavy order considering that none of this is documented.
The text was updated successfully, but these errors were encountered: