Make a moveclip a link?

I’m wanting to make a movie clip a link, the movie clip loads an image from a php file.

Heres the actionscript that loads the image, if it helps.
Also, how do a load text into a dynamic text box with this script.
The text I want to put into it is loaded from the php file.

loadText = new LoadVars();
loadText.load("http://localhost/flashload.php");
loadText.onLoad = function(success) {
	if (success) {
		sPhoto.loadMovie(loadText.photo);
		mytitle.loadMovie(loadText.title1);
	}
};

Also is there any way to resize the photo in the actionscript. I want the photo to fit in a movieclip 190x120.

Thanks in advance!