//Array to hold all the puzzle movie clip instances.
var stadiumArr:Array = new Array (stadium_mc, stadium_mc2, stadium_mc3,
stadium_mc4, stadium_mc5, stadium_mc6, stadium_mc7);
//For loop to control the drag and drop of each burger by adding a
//mouse up and d
own to each movie clip.
for (var i:uint =0; i < stadiumArr.length; i++) {
stadiumArr[i].addEventListener(MouseEvent.MOUSE_DOWN, drag);
stadiumArr[i].addEventListener(MouseEvent.MOUSE_UP, drop);
}
//This function drag the movie clips when the mouse is pressed.
function drag(event:MouseEvent):void {
event.currentTarget.startDrag();
}
//This function drop the movie clips when the mous
e is released.
function drop(event:MouseEvent):void {
event.currentTarget.stopDrag();
}


After creating this jigsaw I had ago at creating another one which I did and I chose to do a jigsaw of Usain Bolt. I did it the same way I did before apart from changing the instance names to bolt_mc and the jigsaw turned out like the one below.

