JSFL error: TypeError: fl.selectElement is not a function
An issue I'm having in Animate CC with a JSFL script, just trying to select an element.
A symbol is on the stage, then on running this jsfl script I get an error.
var el = fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements[0];
fl.trace(el); // returns: [object SymbolInstance]
fl.selectElement(el, false); //returns: TypeError: fl.selectElement is not a function
It looks like it can find the element, and trace the[object SymbolInstance] but I can't select it.
