-
AE Extension Build // Is it possible to load a copy of an extension?
Hello, I am currently building an Extension through the html/cep route and looking for a way to open another instance of my extension after pressing a button.
I’ve tried using csinterface.requestOpenExtension(extID) but this does not work. Is it even possible to have 2 instances of the same extension?
Is there another way to have a button open up another instance of an extension?
I am building a tool that has several tabs and would like the user to have the ability to have another instance with a different tab so they can dock it anywhere in aftereffects.
document.getElementById("newInt").addEventListener("click", function () {
var newInst = new CSInterface();
newInst.requestOpenExtension(com.msetest.test);
})