Michael S Kluskens on 17/11/01 2:42 PM scrawled: > At 10:35 PM -0500 11/16/01, Bowerbird@... wrote: >> michael said: >>> What's the best way to make the >>> EDIT FIELD scroll to the insertion point? >> >> edit field 1 >> setselect insertionpoint,insertionpoint >> tekey$=" " >> tekey$=chr$(8) : rem <-- the delete key > > But is it Carbon-ready? I was using TEKEY$ = "" already but I was > concerned that it was going to cause me problems. Using "" instead > of " " you don't need the delete. In my experience it seems to work. Try: TESETSELECT(efH, insPoint, insPoint) TEAUTOVIEW(_true, efH) TESELVIEW(efH) efH is the handle to the edit field -- Pete... (the other one)