my app logs to a text edit box, but how do i get the cursor to always follow the text???
i tried the following but it does not work:
// end is the length of the text
selectionRec.selStart = end;
selectionRec.selEnd = end;
SetControlData(logField, kControlEntireControl, kControlEditTextSelectionTag, sizeof(selectionRec),&selectionRec);
// then i draw the control..