TweenExtended

Hey, it doesn’t seem like onMotionStarted or onMotionFinished are working with TweenExtended. Does it not work in Flash 8? It seems pretty obvious while testing that they aren’t working. I’ve done traces and they don’t show up either. Does anybody know if these just won’t work, if theres a fixed version, or another way to accomplish the effect below?

[AS] public function Resize():Void
{
if(m_Limits.state == “updating”)
return;

    var sizeTween:TweenExtended = m_Data.motionHandler.Resize();
    
    var data:ContentData = m_Data;
    var limits:ContentLimits = m_Limits;
    
    sizeTween.onMotionStarted = function():Void
    {
        limits.state = "updating";
    }
    
    sizeTween.onMotionChanged = function():Void
    {
        data.resizeHandler.Resize();
    }
    
    sizeTween.onMotionFinished = function():Void
    {
        limits.state = "normal";
    }
}[/AS]