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

[REBOL] Re: set focus on a web page with rebol internet plugin...

From: greggirwin::mindspring::com at: 23-Jun-2005 9:02

Hi Manu, EL> I'm working on a web page with a rebol plugin: EL> I'd like to know how to set the focus on a field when the page is open. After creating your layout, use the FOCUS function. It works the same whether you use the plug-in or not; REBOL is nice that way. lay: layout [f: field f-2: field] focus f-2 view lay -- Gregg