Drag&drop pathing problems

I have been going insane trying to get the following to work :

I have a main movie index.swfwhich holdsa container for externalmovies to load in called “contens”

I have a photalbum I load into this and this is where the headache starts.

The photoalbum uses drag&drop and works standalone.Once loaded in the index.swfthe dragging works but the dropping doesn’t. I know it is a pathing problem but can’t get it to work (FLAsh MXbtw)

I have addedthe script where the problemoccurscan someone plz help me for im going mad.

// drag polaroid from bottom on stage
bild.prototype.ReleaseHandler = function(bild, ursprungx, ursprungy){
this.stopDrag();
//stop wobbling
delete this.onEnterFrame;
delete stopit;
delete cnt;
//
[color=Red]if(this._droptarget != “/bildansicht_mc” && this._droptarget != “/bildansicht_mc/container_mc”)[/color]{
//nicht zeigen
if((this._x > 700) || (this._x < 0) || (this._y > 100) || (this._y < 0)){
this.onEnterFrame=function(){
if(this._x != urspr_x){
this._x -= ((this._x-ursprungx)/2);
this._y -= ((this._y-ursprungy)/4);
}else{
delete this.onEnterFrame;
}
}
}
}else{
//zeige grossansicht
bildgroesse_reset();
bildansicht_mc.container_mc.loadMovie(bilderordner+shooting_cb.getValue()+"/"+bild);
ergaenzeVerlauf(bild); //zum verlauf hinzufuegen
this.bild_mc._alpha=30;
this._rotation = urspr_rot;
this.onEnterFrame=function(){
if(this._x != ursprungx){
this._x -= ((this._x-ursprungx)/2);
this._y -= ((this._y-ursprungy)/4);
}else{
delete this.onEnterFrame;
}
}

Please do not answer in german since this is code from someone else and I am not german :).

I think the problem is in the red text and it is just not matching the targetdrop area.

Any help would be appreciated.

Nocti

Where is /bildansicht_mc located?

i guess its in the _root, change those to _root.bildansicht_mc

(btw, thats some crappy old syntax :P)