Answered
if Current Frame Lable == ???
currently I have been using this frame number with
conditional logic to do some stuff but I know it will and already
has come back to haunt me when I made some changes to the timeline.
So in order to avoid this is there a way to use if
(this._currentlable == FrameLableName) {
//do something
}
similar to:
if (this._currentframe == 41) {
do something();
}
//do something
}
similar to:
if (this._currentframe == 41) {
do something();
}