CancelInvoke !!

how can I cancelInvoke from another monobehiavor ???

if other.CancelInvoke doesn’t work, try

invoker.js

function CancelInvokeFunction( f : String ) {
 CancelInvoke( f );
}
another monobehaviour.js

var anInvoker : Invoker;

anInvoker.CancelInvokeFunction( "Function" );