[REBOL] Sticky Button Down State
From: ishtahara:yaho:o at: 30-Jun-2003 9:19
Thanks to Anton and Carl for helpful button solutions.
One more question, if I may. Given:
sites: [
http://www.rebol.com
http://www.rebol.org
http://www.reboltech.com
http://www.rebolforces.com
]
view layout [
button "Start Scan" [
foreach site sites [print read site]
]
]
The button state remains as pressed until the foreach
operation is complete (may be long operations).
The sticky button is not very disirable to see, but
even less, if user clicks button during wait, the
events held in queue and then processed. Returning
button immediately to "up" state is desireable but
invites user clicks.
Any list advice for this situations? Progress is one
way, but I maybe dont want to attach progress to all
such buttons. I plan to release some reblets with SDK,
and extra thorogh style will reduce users support
questions.
Thanks again!
~D