material.SetColor not working.

i took the SetColor line straight from the reference, on a material that has _Color in properties and a uniform value, the JS debugger sais: Assets/shadercontrol.js(13,29): BCE0005: Unknown identifier: ‘_Color’.

#pragma strict

function Start () {

			
			shsv= Color(.6,.2,1, 1);
renderer.material.SetColor( _Color, shsv);
}

renderer.material.SetColor( “_Color”, shsv);

I think what you need is “_Color”.
Sorry for the unformatted code, but it wasn’t that necessary.