Invoking a method from another script, C#

I am trying to Invoke a public method like this:

Invoke("ClearBadLinkIndicators",0);

But it is in my script called SelectControl - what do I do to this line to make it invoke from SelectControl and not the current script?

you would do the following

otherScript = GetComponent();

otherScript.DoSomething();

link text