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

[REBOL] Where do tabs go?

From: sanghabum::aol::com at: 7-Aug-2001 9:21

Hi all, Has someone fathomed out the logic behind VID's tabbing from field to field? This first example does exactly what I'd expect: tab key or enter key cycling round the three data entry fields. unview/all view layout [ label "field1" Field1: field [show field1] label "field2" field2: field [show field2] label "field3" Field3: field [show field3]] But this second example, we go to the next INFO field, and stop there. It takes a mouse to move on. unview/all view layout [ info "field1" Field1: field [show field1] info "field2" field2: field [show field2] info "field3" Field3: field [show field3]] (It's not that I want to use info fields instead of labels. It's just that *any* info field is a focus magnet, and I'd like to know how to stop it). --Thanks, --Colin