Christine
04-19-2004, 03:51 PM
I tried to see if you could have a custom mouse pointer using
onClipEvent (load) {
startDrag (this,true);
Mouse.hide();
}
and then also have a simple draggable movie clip on the same movie.
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag ();
}
It didn't work; the moment the MC was dragged, the custom pointer stopped being dragged. How can I modify the code to make it work? Using MX.
onClipEvent (load) {
startDrag (this,true);
Mouse.hide();
}
and then also have a simple draggable movie clip on the same movie.
on (press) {
startDrag (this, true);
}
on (release) {
stopDrag ();
}
It didn't work; the moment the MC was dragged, the custom pointer stopped being dragged. How can I modify the code to make it work? Using MX.