Hey guys, I am using the following actionscript to have draggable MC’s:
on(press) {
startDrag(this,false);
}
on(release) {
stopDrag();
}
on(press) {
startDrag(this,false);
}
on(release) {
stopDrag();
}
This problem is that If I have buttons within these MC’s, theyre gotoandplay actionscript is superceded by the onrelease commands in the other actionscript. Basially I want to have btns within the mc to jump to different places in the mc, but they do nothing when clicked and I think whats going on is the on release functions are superceeded by the actionscript in the main stage.
The only solutions I can think of is to NOT have the button inside the MC but instead come up with script that will tell it to follow the MCs x and y position, so as the mc gets dragged the buttons follows, staying in its fixed position. no idea if im making sense but if someone can help me it would be very appreciated. email is spaul2k4@gmail.com thanks in advance for your thoughts on this