Trying to reference a custom ActionDescriptor
I'm trying to create a global action descriptor that I can read from my C++ plugin in my photoshop application:
//.net creation of the actionDesc
app.DoJavascript("var desc = new ActionDescriptor(); desc.putString( 0 , app.activeDocument.name); app.putCustomOptions('Glob', desc, true);");
I'm trying to get this descriptor in my plugin and I don't know if it's possible, is it possible to get a action descriptor by name in js, or is there a way in js I can return that 'desc' action descriptor?
