Hey Guys,
The TimelineMax method getLabelsArray() will not work for me. Here is a super simplified version...
var tl = new TimelineMax();
tl.append('start');
tl.to($('#elem'), .5, {css:{top:'200px'}});
console.log('yo'); // This one shows in console
var labels = tl.getLabelsArray();
console.log('yo2: ' + labels[0].name); // This does not
Has anyone been able to get this to work?
All I'm really trying to do is play a label by index, and this is the only way I can see to do it.
Thanks for any help