Load a movie texture

Hi,

I’m an extreme newbie and have been trying to find a solution to adding a movie texture to a flat plain.

What I have achieved is:
import the clip
add clip to object
create a script with the contents

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public MovieTexture movTexture;
	void Start() {
	  renderer.material.mainTexture = movTexture;
	  movTexture.Play();
	}
}

i get no errors in the debug but the clip just will not play. I have read as much documentation as i can, i’m using the Pro Version of Unity on the 30 day trial.

All help will be very much appreciated.

Many Thanks

flvll

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
public MovieTexture movTexture;
void Start() {
// renderer.material.mainTexture = movTexture;
//movTexture.Play();
}
void Update(){

movTexture=(MovieTexture)renderer.material.mainTexture;
movTexture.play();
movTexture.Loop=true;
}

}