I have a drag and drop flash file that works fine. It contains questions and answers. You drag the correct answer in the correct place and it sticks.
When I bring the same movie into a level of another movie it will drag but won't stop where it's supposed to. In other words it's stops working.
The code has a few buttons and they look like this.
b_readiness.onPress = function() {
this.startDrag();
};
b_readiness.onRelease = function() {
this.stopDrag();
if (this._droptarget == "/d_readiness") {
this._x = 173;
this._y = 165.5;
} else {
this._x = 65;
this._y = 232.5;
}
};
Thanks in advance.
When I bring the same movie into a level of another movie it will drag but won't stop where it's supposed to. In other words it's stops working.
The code has a few buttons and they look like this.
b_readiness.onPress = function() {
this.startDrag();
};
b_readiness.onRelease = function() {
this.stopDrag();
if (this._droptarget == "/d_readiness") {
this._x = 173;
this._y = 165.5;
} else {
this._x = 65;
this._y = 232.5;
}
};
Thanks in advance.