Answered
Why serPropertyParameter() method mistakenly taking two different string values as duplicate string?
I'm trying to add list of array values as items for Dropdown Menu Control Effect? Here's the screen shot...
But the each items in array is different from each other
Code:
//Edited code var array = ["1","2","043","4","5"];
var array = ["1","2","443","4","5"];
var layer = app.project.activeItem.selectedLayers[0];
layer.property("ADBE Effect Parade").property("Dropdown Menu Control").property(1).setPropertyParameters(array);
The string "443" and "4" conflict each other. May I know the reason why is it happens?
