why does this drag the layer below it too?
using:
on (press) {
_root.startDrag(“movie”);
}
on (release) {
_root.stopDrag();
}
Dave
why does this drag the layer below it too?
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…
:: Copyright KIRUPA 2024 //--