[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Maxim Olivier-Adlhoch
> -Original Message- > From: Greg Brondo [mailto:[EMAIL PROTECTED] > BTW, is there anywhere to find info about all the available > system objects and > what not in Rebol? I 've notice in a some or Carl's scripts > he accesses > object that I've never seen mentioned in the documentat

[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Ammon Johnson
ED]> Sent: Tuesday, March 02, 2004 9:43 AM Subject: [REBOL] Re: newbie question (and some frustration) > > From the Link console... > > > Found these words: >blank-face object! [type offset size span pane text color image > effec... >ctx-install-fileset o

[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Ammon Johnson
ose joinset diffset error space char letter d... HTH ~~Ammon ;~> - Original Message - From: "Greg Brondo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 02, 2004 9:30 AM Subject: [REBOL] Re: newbie question (and some frustration) > > Thanks!

[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Greg Brondo
Thanks! Reduce worked like a champ. Now I think I'm starting to understand a 'little' better ;-). BTW, is there anywhere to find info about all the available system objects and what not in Rebol? I 've notice in a some or Carl's scripts he accesses object that I've never seen mentioned in t

[REBOL] Re: newbie question (and some frustration)

2004-03-01 Thread Volker Nitsch
Am Dienstag, 2. März 2004 00:39 schrieben Sie: > The code below fails with the error listed. The /custom refinement expects > a block '[post ]'. However, it doesn't like a word that's value is > a string. What gives? Anyone please help! I've wasted a good hour trying > to make this work. htt

[REBOL] Re: newbie question (and some frustration)

2004-03-01 Thread Ammon Johnson
My last post was a little premature... The problem lies in the fact that a word within a block is just a word. This code should make it all work... web-data: read/custom http://chiex04.algx.com/phone/phone_search_results.asp reduce ['post txt-search] use REDUCE or COMPOSE to get the value of th

[REBOL] Re: newbie question (and some frustration)

2004-03-01 Thread Ammon Johnson
You need to use REDUCE instead of REJOIN. REDUCE leaves the value a block while evaluating the expressions within the block whereas REJOIN evaluates the expressions and turns them into a string. HTH ~~Ammon ;~> - Original Message - From: "Greg Brondo" <[EMAIL PROTECTED]> To: <[EMAIL P