开发者

Rebol Cannot close view window on Mac OS X and I cannot enter anything in field

开发者 https://www.devze.com 2023-01-28 19:18 出处:网络
I cannot close window on Mac OS X 10.6.4 and I cannot enter anything in field. REBOL/View 2.7.7.2.5 5-Jan-2010

I cannot close window on Mac OS X 10.6.4 and I cannot enter anything in field. REBOL/View 2.7.7.2.5 5-Jan-2010

Update: this occurs when I escape the console program I executed here http://askcodegeneration.com/rebol-form/

  window: layout [
      H1 "Demo"
      style rightlabel label right 120x24
      across
      rightlabel "First Name" First-Name: field "Enter First Name" Return rightlabel "Last Name" Last-Name: field "Enter Last Name" Return rightlabel "Age" Age: field "Enter Age" Return rightlabel "Note" Note: Area "Enter Note" Return
     rightlabel
      space 0
      button "Submit" [
          ;close the window for the program to continue
          unview
      ]
      bu开发者_如何学Gotton "Cancel" [unview]
  ]

View Window


anytime you escape in the console, the event management stops.

just do do-events to start up even handling again.

closing the console window should always closes all view windows.

0

精彩评论

暂无评论...
验证码 换一张
取 消