Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am running a JSFL script that adds a new layer to the timeline and i want to add specific labels to specific frame numbers. Currently I addNewLayer("newLayer") and am looping through an existing timeline layer called "labels". I want to add labels to the "newLayer" based on the frame number i am looping through on the "labels" layer. Something like this:

function search(p_layers, p_timeline){
     for each(var l = 1; l <= p_layers.length; l++){
       var childFrames = p_layers[l].frames;
       for(var i = 0; i < childFrames.length; i++){
           var childFrameLabel = childFrames[i].name;
           p_timeline.layers[0].frames[i].name = childFrameName;
       }
    }
}

This all works because the "newLayer" is always at the top of the timeline but it is always adding a keyframe label at frame 1 of the "newLayer" layer instead of at the index of "i". Is there something i am missing or someway to create a keyframe and then add the label at that index?

Any help with this would be greatly appreciated! Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.