# Roll Over Problem

**URL:** https://forum.kirupa.com/t/roll-over-problem/305989
**Category:** flash
**Created:** [March 7, 2010, 10:57am UTC](https://forum.kirupa.com/t/roll-over-problem/305989 "2010-03-07T10:57:04Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![revo999](https://avatars.discourse-cdn.com/v4/letter/r/cab0a1/32.png) [@revo999](https://forum.kirupa.com/u/revo999)
#### Post date: [March 7, 2010, 10:57am UTC](https://forum.kirupa.com/t/roll-over-problem/305989/1 "2010-03-07T10:57:04Z")

</div>

I am loading products from XML

in Roll Over ,A movie clip appears  
I m trying to display Description , Price & Link in a MovieClip

when I move to that movieClip , as it moves away from image(on which roll-over was trigrred ) my description movieClip gone

function overImg(event:MouseEvent):void{

var tooltip:toolTip = new toolTip();  
addChild(tooltip);

}

function outImg(event:MouseEvent):void{  
removeChild(tooltip);  
}

I have to add this ToolTip/ description box over the Image , and want to remove on roll-out
