# How do I bounce image in then fade?

**URL:** https://forum.kirupa.com/t/how-do-i-bounce-image-in-then-fade/230582
**Category:** flash
**Created:** [June 27, 2007, 1:05pm UTC](https://forum.kirupa.com/t/how-do-i-bounce-image-in-then-fade/230582 "2007-06-27T13:05:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![blurryLine](https://avatars.discourse-cdn.com/v4/letter/b/48db29/32.png) [@blurryLine](https://forum.kirupa.com/u/blurryLine)
#### Post date: [June 27, 2007, 1:05pm UTC](https://forum.kirupa.com/t/how-do-i-bounce-image-in-then-fade/230582/1 "2007-06-27T13:05:17Z")

</div>

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?

```auto
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});

```
