[REBOL] Re: Menu in REBOL-View
From: carl:cybercraft at: 17-Oct-2004 10:45
On Sunday, 17-October-2004 at 12:01:22 you wrote,>How can i make menus for a layout?There's no specific menu style, the closest being CHOICE... view layout [ choice "aaa" "bbb" "ccc" [print face/text] box ] (BOX is just there to enlarge the window.) Alternative approach... items: ["aaa" "bbb" "ccc" "ddd"] view layout [ choice data items [print face/text] box ] Hope that helps. -- Carl Read