How do I bounce image in then fade?

Newbie here…I have a logo zooming in, bouncing and then fading. I sort of have it working. The image zooms, bounces, and fades, but then it displays the image completely meaning the fade is not permanent. Below is the actionscript. How do I get it to stay faded?

import fl.transitions.*;
 import fl.transitions.easing.*;
 import fl.transitions.Tween;
 
 TransitionManager.start(wired, {type:Fade, direction:Transition.OUT, duration:5, easing:Strong.easeIn});
 TransitionManager.start(wired,{type:Zoom,direction:0,duration:2,easing:Bounce.easeOut});