Rebol Programming/request-list
Tools
General
Sister projects
In other projects
REQUEST-LIST titl alist /offset xy
Requests a selection from a list.
REQUEST-LIST is a function value.
request-list: func [ "Requests a selection from a list." titl [string!] alist [block!] /offset xy /local rslt list-lay][ list-lay: layout [ origin 10x10 h3 titl text-list data alist [rslt: value hide-popup] btn-cancel #"^[" [rslt: none hide-popup] ] rslt: none either offset [inform/offset list-lay xy] [inform list-lay] rslt]