|
Pages: [1]
|
 |
|
Author
|
Topic: Rebol View - standard text-list (Read 662 times)
|
|
jfdutcher
|
Does anyone have any idea how to prevent, or immediately reverse, the 'hi-liting' of the selected row after it has been clicked by the cursor in a standard View text-list?
|
|
|
|
|
Logged
|
|
|
|
|
DideC
|
Picked values are stored in the 'picked member of the face object. So you can clear it after you have done what you need to do. view layout [ text-list "a" "b" "c" "d" [ ; here you do what you have to do with the picked value. Ie: print pick face/picked 1 ; then you clear the list clear face/picked show face ] ]
|
|
|
|
|
Logged
|
|
|
|
|
jfdutcher
|
Thanks, it works very nicely....
John D.
|
|
|
|
|
Logged
|
|
|
|
|
|
Pages: [1]
|
|
|
 |