i got a sorta slideshow which seamlessly slides.
Heres the code for the Movieclip which holds the images.

Code:
onClipEvent (load) {

	slide.duplicateMovieClip("slide2",0);
	slide2._x = slide._x+slide._width;
	slideStartx = this._x;
	slideSpeed=10;

}

onClipEvent (enterFrame) {

	this._x-=slideSpeed;
	if (this._x<= (slideStartx-slide._width)){
		this._x=slideStartx-slideSpeed;
	}
}
The sliding is working fine, this code is based on an old tutorial which was in the games section
Now in another movie im loading this swf file slideshow using loadmovie and im loading it into a blank movie clip but the problem is that its not scrolling, im guessing its a communication error.
Any help?
thanks