How should I describe to access child mesh in Java

Hi all. I have two meshes in an object and one script is attached to the parent mesh. I want to access vertices and normals of child mesh from the script attached to it's parent. I described:

var mesh : Mesh = Find.("testsphere").GetComponent(MeshFilter).mesh;

Then I got an error and it does not work at all. Someone please help me by teaching how I should describe correctly in Java Script!

Hi,

First, if you want to access children, maybe you are interested in: Component.GetComponentInChildren GameObject.GetComponentInChildren

Second, if you want to Find() something, you should write like this: `Find.("testsphere")`

And I think, it should work. And I think you already take a look to MeshFilter.mesh, but just in case