Hey everyone,
I recently went and changed my cursor to an image, however now all my objects which my hand is supposed to drag around won’t work.
AS on new cursor
onClipEvent (enterFrame){
startDrag (this, true);
}
AS on draggable objects
on (press) {
startDrag (“berry1”);
}
on (release) {
stopDrag ();
if (_root.berry1, hitTest(_root.bird1)) {
_root.gotoAndStop(32);
}
}
Mouse is also hidden
Any help would be really grateful, for this is rather urgent.
Natushi12