Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: 'feel docs

From: media:quazart at: 5-Nov-2001 16:32

Hi Hallvard, in the how-to section of rebol's web site there is a file named: "How to Handle User Interface Events" Everything you need is there.... well as usual, almost everything (95% of it ;-) -Max ----- Original Message ----- From: "Hallvard Ystad" <[hallvard--ystad--helpinhand--com]> To: <[rebol-list--rebol--com]> Sent: Monday, November 05, 2001 3:44 PM Subject: [REBOL] 'feel docs
> Hello > > I'm experimenting with 'feel, but have some trouble understanding it all.
I've looked around in the script library, found 'detect, 'over, 'engage _used_, but not _explained_. Where will I find comprehensive docs? (Can't wait for that french book!)
> Here's something that yields a "too-late"-value: > > view layout [ > across > box1: text-list 200x200 data [a b c] feel [ > detect: func [face event] [ > if event/8 [print mold face/picked] > ] > ] > return > button "Quit" [quit] > ] > > I'm sure you'll understand what I'm after if you run the script. How will
I make it return the up-to-date value? And if I didn't go for a double click, but a single, how would I get the right value then? (Hopefully in the same way!)