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

[REBOL] field action unfocuses field

From: arolls:bigpond:au at: 23-Jul-2001 6:53

Does anyone know how to reset the focus to the same field after it has completed its action? See this example doesn't work: view center-face layout [ f: field [ print ["f is focused. waiting 3 seconds"] focus f ; this works, great wait 3 ; time for you to see it is focused ok focus f ; gets unfocused straight after this ] do [focus f] ; focus on f first time ]