CEP panels persisted state
I am trying to enable persisted state in the latest version of photoshop with the following code:
event.type = "com.adobe.PhotoshopPersistent";
event.scope = "APPLICATION";
event.appId = csInterface.getApplicationID();
event.extensionId = csInterface.getExtensionID();
csInterface.dispatchEvent(event);
either I don't know what to expect from this code or it doesn't work. I try to keep the state of an input field that gets populated from jsx, but no state whatsoever gets to be persisted. I am using VueJs and Vuex to build my app.
