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
With the following code I am creating two inputs:
// regular input let input = document.createElement('input'); input.placeholder = 'Regular' input.type = 'text'; document.body.appendChild(input); // shadow input class CustomInput extends HTMLElement { constructor() { super(); this.attachShadow({ mode: 'open' }); let input = document.createElement('input'); input.placeholder = 'Shadow' input.type = 'text'; this.shadowRoot.appendChild(input); } } customElements.define('custom-input', CustomInput); document.body.appendChild(new CustomInput())
The first one is a regular input, while the second one is a custom element using Web Components which contains an input in its shadow DOM.
In After-Effects, using cmd+v to paste content only works for the first one. With the second input, After-Effects steals focus to one of its panels.
MacOS 13.3.1 After-Effects 23.3.0
The text was updated successfully, but these errors were encountered:
@GoodBoyNinja You might also want to mention this in: https://community.adobe.com/t5/after-effects/ct-p/ct-after-effects?page=1&sort=latest_replies&lang=all&tabid=all&topics=label-scripting or https://community.adobe.com/t5/after-effects/ct-p/ct-after-effects?page=1&sort=latest_replies&lang=all&tabid=all&topics=label-SDK
... unless this affects more than one application and is definitely a CEP issue of some sort, and not say, an After Effects issue.
Sorry, something went wrong.
@GoodBoyNinja You might also want to mention this in: https://community.adobe.com/t5/after-effects/ct-p/ct-after-effects?page=1&sort=latest_replies&lang=all&tabid=all&topics=label-scripting or https://community.adobe.com/t5/after-effects/ct-p/ct-after-effects?page=1&sort=latest_replies&lang=all&tabid=all&topics=label-SDK ... unless this affects more than one application and is definitely a CEP issue of some sort, and not say, an After Effects issue.
Thanks Erin! Seems like the same things happens in Illustrator. https://user-images.githubusercontent.com/66829812/233152092-4cf00d46-4249-46d8-a8db-15f0ab326c11.mp4
No branches or pull requests
With the following code I am creating two inputs:
The first one is a regular input,
while the second one is a custom element using Web Components which contains an input in its shadow DOM.
In After-Effects, using cmd+v to paste content only works for the first one.
With the second input, After-Effects steals focus to one of its panels.
CleanShot.2023-04-19.at.18.25.46.mp4
MacOS 13.3.1
After-Effects 23.3.0
The text was updated successfully, but these errors were encountered: