C++ with UXP communication

Hello

I am trying to connect an automation with plugin but I always receive an error that plugin is not found

My panel have this id in the manifest.json

   PIActionDescriptor execDesc;
   sPSActionDescriptor->Make(&execDesc);
   sPSActionDescriptor->PutString(execDesc, keyPEC_Data, data);
      
   const char* UXP_MANIFEST_ID = "com.plugin.id";
   SPErr err = sUXP->SendUXPMessage(GetPluginRef(), UXP_MANIFEST_ID, execDesc);

There are an example of this?

Thanks

1 Like

I face the same issue…

1 Like

Facing the same issue.

@develop13 or @Posheng did you get any workarounds that work for you?

Thanks for your help

Making a hot folder inside the UXP
C++ plugin sends the file or the info in this folder (PluginData folder)
And a setInterval in UXP code searching in this folder.

Not nice, but we only found this way

1 Like