-
Array variable attached to slider not working right
So I’m trying to use a variable attached to a slider to control which line from a .json file the data is being read from.
This works:
eval(“var temp=”+footage(“miaa.json”).sourceText);
X=0
temp[X].R1This does not:
eval(“var temp=”+footage(“miaa.json”).sourceText);
X=thisComp.layer(“line”).effect(“Slider Control”)(“Slider”);
temp[X].R1Can anyone help me out here?