Hi. I'm trying to create a graphic organizer for students so that they can write their notes in 4 squares on the screen and then drag the boxes down to slots one through four at the bottom to put their notes in order.

I can make the four boxes - they are buttons inside movie clips - but when I set them to drag in the actions, only one of them will drag (the first one) unless I assign them all different startDrag and stopDrag keyboard commands.

The movie clips are named; the button instances in the clips are named; even all the text boxes have their own values. The current actions for the first of the four clips (c1, c2, c3, c4) look like this:

on (keyPress "<Up>") {
startDrag ("/c1", true);
}
on (keyPress "<Down>") {
stopDrag ();
}

I used keyPress because none of them dragged when I used Press - I guess because they are text boxes. I don't want to have to specify different keyboard commands for each box to drag, or students will get completely lost.

I've tried for two days to figure this out. How do I get 4 text boxes to drag using one set of keyboard commands?

Thanks to anyone who can help!!!!
Jessica