Thanks for answering.
Taltos, that just might be something like what I want. I don't have a lot of time right now to look it over good enough to give you a yes or no. I will be able to later. Thanks so much either way.
Izzmo, Konami has a little game that can give you an example of what I mean:
http://www.konami-data.com/~kids
An example of my drag/drop game is here:
http://www.winxclub.us/characters/bloomnew01.html
I convert the image to a movie clip and then then paste in the following and that makes them drag:
on (press) {
//Start Dragging Movieclip Behavior
startDrag(this);
//End Behavior
}
on (release) {
//Bring to Front Behavior
mx.behaviors.DepthControl.bringToFront(this);
//End Behavior
//Stop Dragging Movieclip Behavior
stopDrag();
//End Behavior
}