Basically I have used this code on a button when I want to play a movie:


on (press) {

//load Movie Behavior
if(this.Work == Number(this.Work)){
loadMovieNum("NADP1.swf",this.Work);
} else {
this.Work.loadMovie("NADP1.swf");
}
//End Behavior

}


How do I do this if the button is located within a movie within a scrollpane. The movie is outside of the scrollpane.

Thanks-