Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Applying Focus

From: gscottjones:mchsi at: 18-Feb-2002 6:40

From: philb
>When opning a new window is it possible to >get focus to be applied to the first field so text > can be entered without using the mouse to > select the field?
Hi, Phil, Not knowing what widgets you have before the first field, this example shows how to set the focus to a specific field. view layout [ field f2: field field do [focus f2] ] Hope that helps. --Scott Jones