I am relatively new to working in AS3 and Tweener, and I am having trouble making onComplete and delay functions work within Tweener when calling them from an Enter_Frame event. Example
line_mc.addEventListener(Event.ENTER_FRAME, intro);
function intro(event:Event):void
{
Tweener.addTween(event.target, {alpha:1, time:.2, delay:2, transition:“easeOutQuad”, onComplete:lineOut});
}
function lineOut():void
{
line_mc.alpha = 0;
}
Any help would be greatly appreciated
Thanks