hi

I have 2 questions relating to laoding a movie into a new level - and then allowing that movie to be dragged - with the acceleration / de-acceleration effect happening.

On the #1 question:

Is it possible to specify x and y co-ordinates on where the new movie loads in the level specified?

I'm aware that positioning can be achieved by loading the movie into a target movie holder - but as I'd like the movie to be draggable - I assuming this isn't an option.

So at the moment I'm using:

on(release){
loadMovieNum("movie1.swf","5");
}

to load the movie - can this be extended to included x / y co-ordinates in level 5?


#2 question:

The movie1.swf has a draggable function using an invisible button:

on (press) {
//Start Dragging Movieclip Behavior
startDrag(this);
//End Behavior

}
on (release) {
//Stop Dragging Movieclip Behavior
stopDrag();
//End Behavior
}

how is the acceleration / de-acceleration effect achieved in the context of this code.

Many thanx for any help given!

Dirk