|
Pages: [1]
|
 |
|
Author
|
Topic: attempting to recreate an app in REBOL... (Read 458 times)
|
|
Thør
|
Hi!
I'm attempting to recreate a VB app on REBOL. The VB app contains a tree-like menu on the left side, and on the right side, the app contains the result of whatever was chosen.
Could someone please post a link or sample code on how to do this? Thank you very much.
|
|
|
|
|
Logged
|
|
|
|
|
CarlRead
|
View doesn't have a built-in tree-like menu - the closest style being the TEXT-LIST. (There's bound to be a few tree-like styles made though - a search of http://www.rebol.org/ should find some.) Doing what you want using TEXT-LIST would require something like this (for a flat list)... menu: ["aaa" "bbb" "ccc"] view layout [ across text-list 100x100 data menu [ results/text: first face/picked show results ] results: area 100x100 ]
Hopefully that'll get you started.
|
|
|
|
|
Logged
|
- Carl Read
|
|
|
|
Thør
|
Thanks for your reply. Will search some more... 
|
|
|
|
|
Logged
|
|
|
|
|
|
Pages: [1]
|
|
|
 |