-
get an property address dynamically
Hi everyone,
I wrote a script from a script by David Torno. It look like this :
myProp1 = app.project.item(6).layer("Dark Lime Green Solid 1").property("ADBE Transform Group").property("ADBE Position");
myProp2 = app.project.item(6).layer("Black Solid 1").property("Transform").property("Position");var a = collectKeyFrames(myProp1);
var b = transferKeyframes(myProp2, a);
In this case, my 2 functions work perfectly well, BUT… How can I get property informations dynamically ?
I wrote them into a doc file, I can get the info, but my variables become texts, not objects, and the functions don’t work anymore. How can I get that ?