Mx.transitions... help?

How do I turn _visibility off/on after an alpha fade?

I tried this AS but it just turns it off before trigering the alpha transition.


function initTrans():Void
{
var myAlphaTweenIn:Tween = new Tween(this[‘img’+count], ‘_alpha’, Strong.easeOut, 0, 100, 2, true, _visible=true);
var myAlphaTweenOut:Tween = new Tween(this[‘img’+oldCount], ‘_alpha’, Strong.easeOut, 100, 0, 2, true, _visible=false);

}


Any help, Ideas?

Thanks > j