Answered
triggering actions using frame labels
Not sure how to do this one: I want to trigger an action when
the playhead reaches a certain labeled frame. I can make it work
using:
if (_currentframe == 10){
dothis;
}
but I anticipate moving things around in the timeline so I would rather have the action triggered when the playhead reaches a certain frame label. I tried using something like:
if (frameLabel == "myframenamehere") {
dothis;
}
but that doesn't work. Any help much appreciated!
Michael
if (_currentframe == 10){
dothis;
}
but I anticipate moving things around in the timeline so I would rather have the action triggered when the playhead reaches a certain frame label. I tried using something like:
if (frameLabel == "myframenamehere") {
dothis;
}
but that doesn't work. Any help much appreciated!
Michael
