| | | bigmac031760 |  |
| Posted: Sat Aug 30, 2008 5:31 pm Post subject: Drag & Drop Question |  |
I've searched the database on Drag and Drop Action Script and found them too complicated for what I need. I just want the user to drag a movie clip and release it over a box and then jump to frame 22. I'm going to assume the user is not stupid and will at least get it close to the drop box before release. With the attached script (AS 2.0), I can get the movie clip to drag and release, but when I release it, it doesn't jump to frame (22) and begin to play. You can DL the FLA file off my server.
LINK
Thanks, Kenn
CODE.............
on (press) { startDrag(this); } on (release) { gotoAndPlay(22); stopDrag();
}
on (press) { startDrag(this); } on (release) { gotoAndPlay(22); stopDrag();
} |
|