Draggable object with buttons

I’m making a basic kinda thing or so I thought… ;(

Its basically a weekly calender with event titles under a date.
When the user clicks on an event title an external .swf loads in the top level over the calender into an mc called movieloader. (this contains the event info)

In the external .swf there is a button that when clicked will close the loaded .swf with the unloadMovie function which works fine until…

I want the box to be draggable so the user can move it around the screen to view whats under it in the root level.
To do this I used this;

on(press) {
startDrag(“movieloader”);
}

on(release) {
stopDrag();
}

But when I include this action script the mc drags but the buttons in the mc become un active and I can’t figure out a way around this using the drag function…

Any ideas anyone?

I can’t get the .fla on here for a while unfortantly.

Hope some1 can help!

Thanks

Peter