I did not find those properties as exposedBindings for OakTextView.  My test code follows:<br><br>    bindings = [responder exposedBindings];<br>    int i;<br><br>    for ( i=0; i < [bindings count]; i++ ) {<br>        NSLog( @"binding: %@", [bindings objectAtIndex:i] );
<br>    }<br><br><br>This produced the following output.<br>    2007-05-08 09:43:51.800 TextMate[915] binding: hidden<br>    2007-05-08 09:43:51.800 TextMate[915] binding: toolTip<br><br><br><br>Also attempting to bind to lineNumber or columnNumber 
<br>    [self bind:@"lineNumber" toObject:responder withKeyPath:@"lineNumber" options:nil];<br><br><br>causes the following error<br>    
[<OakTextView 0x630c50> valueForUndefinedKey:]: this class is not key value coding-compliant for the key lineNumber<br><br><br><br>However lineNumber and columnNumber appear to be available in OakStatusBar.  But I do not know how to grab that object.  Any ideas?
<br><br>thanks again,<br>kirt<br><br><div><span class="gmail_quote">On 5/8/07, <b class="gmail_sendername">Allan Odgaard</b> <<a href="mailto:throw-away-1@macromates.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

throw-away-1@macromates.com</a>> wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">On 8. May 2007, at 07:04, Kirt Fitzpatrick wrote:<br><br>> Does anyone know how to obtain the caret location either in the
<br>> line or in the file?  selectedRanges is not implemented by<br>> OakTextView.<br><br>The class does not expose this via any attributes.<br><br>It does however have lineNumber and columnNumber as bindable<br>properties. So in practice you can use that to get the line/column
<br>position.<br><br>_______________________________________________<br>textmate-plugins mailing list<br><a href="mailto:textmate-plugins@lists.macromates.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

textmate-plugins@lists.macromates.com</a><br><a href="http://lists.macromates.com/mailman/listinfo/textmate-plugins" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://lists.macromates.com/mailman/listinfo/textmate-plugins</a><br></blockquote></div><br>