OPPSSSS


codice:
on (press) {
  _root.win01.startDrag( true );
} 
on (release) {
  if (_root.win01.hitTest( _root.win00 )) {
     // se c'è collisione nascondo quella sotto
    [COLOR=red]_root.win00._visible=0 [/COLOR] 
    // e faccio coincidere le coordinate
    _root.win01._x=_root.win00._x
    _root.win01._y=_root.win00._y

  }
  _root.win01.stopDrag( );
}