Drag movie

why does this drag the layer below it too?

www.besgrove.net

using:

on (press) {
_root.startDrag(“movie”);
}
on (release) {
_root.stopDrag();
}

Dave

make sure the instance name is correct…

anyway, why don’t you just use

on (press) {
	this.startDrag();
}
on (release) {
	this.stopDrag();
}

? =)

Didn’t know it… Works, cheers… :beam:

Dave

now you know… :wink: