views:

24

answers:

2

Hey Guys,

Has anyone got movieclip with nested clips to have a doubleclick = true; property working. The only way I could get it to work was by setting mouseChildren to false which I need to be true!! Any leads/ideas would be welcomed!

J

A: 

You can try setting doubleClickEnabled to true, if you haven't already done so.

Robusto
done that unfortunately :(
Jono
A: 

You could try filtering the click event by checking the target name. I guess you need the clicks for different functions so in each function you can decide to what target ( movie clip ) you want the function to react.

function clickHandler (event:MouseEvent ):void
{
  if( event.target.name == theMovieClipINeed.name )
     fire();
}
PatrickS