I have a MovieClip that fades and then fades. I would like to find half the mark in this clip and pause it. However, in EaselJS I cannot find a way to get the current frame position in the clip. Is it possible?
I would like to do something like the following:
canvas = document.getElementById("introCanvas");
exportRoot = new lib.MyMovieClip();
exportRoot.onTick = function () {
};
Can someone provide me some suggestions or ideas on how I could accomplish the above?
Thank!
source
share