Hi Jim, ... I think you'd be better to add your name list later instead of trying to build it in your layout, then use find as Andrew suggested. Perhaps...
Carl Read
carl@...
Oct 1, 2001 10:22 am
188
... USAGE: EXTRACT block width DESCRIPTION: Extracts every n-th value from a series. EXTRACT is a function value. ARGUMENTS: block -- (Type: block hash) width...
Andrew Martin
Al.Bri@...
Oct 1, 2001 10:57 am
189
... Heh. (: I knew of extract, but it didn't behave as I'd hoped when I first looked at it. Odd it's block-only, too... ... ** Script Error: extract expected...
Carl Read
carl@...
Oct 1, 2001 8:55 pm
190
Hi Martin, Your code got me the list of names into the text-list, but the slider had no bar to slide up and down to scroll through the names. name-list:...
hijim@...
Oct 2, 2001 2:24 am
191
Oops! name-list: text-list data names-only 200x350 That's the line that got the names into the list. The other code only constructed the 'names-only data. Jim...
hijim@...
Oct 2, 2001 2:27 am
192
Jim, It's probably a good idea now to show your complete script to the main list, and look at refactoring it, with input from everyone there. What do you ...
Andrew Martin
Al.Bri@...
Oct 2, 2001 4:17 am
193
... Hi Tim, I'm not sure why a text-list would have no slider-bar, but the following post to the main rebol-list shows one way to update their sliders... ...
Carl Read
carl@...
Oct 2, 2001 9:18 am
194
Got it! Hi Andrew, I figured out how to get a line number by looping -- seems to be my standard method. But I still need to work on updating the text-list when...
hijim@...
Oct 4, 2001 1:51 am
195
Got it! Again! I'll try that again. I'm sending this with an editor I wrote in REBOL. I want to see if it comes through in Netscape Mail with the link in blue....
hijim@...
Oct 4, 2001 1:54 am
196
... I'm sure there must be a better way, like using 'index? but I think I'll need to see all the code first. ... structure. Is that what you meant? Basically....
Andrew Martin
Al.Bri@...
Oct 4, 2001 2:28 am
197
I've changed my site to: http://valley.150m.com/ I've made this change because the previous web space provider couldn't provide uncorrupted .html files. Andrew...
Andrew Martin
Al.Bri@...
Oct 4, 2001 4:50 am
198
harsh criticism Basically. Get some really harsh criticism. :-) Well, maybe I'll keep it off the experts' list. But I'll post it and give a link when it's done...
hijim@...
Oct 4, 2001 2:01 pm
199
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the Rebol_New group. File :...
Rebol_New@yahoogroups...
Oct 12, 2001 7:33 am
200
button blue / 1.2 "Delete" [ loop 7 [remove at my-data x ""] asn x ] button blue / 1.2 "Insert New" [ loop 7 [insert at my-data x ""] asn x ] The Delete...
Hi, Jim. ... Try instead: loop 7 [insert at my-data x copy ""] asn x I've added the 'copy word. This makes a new value for each line in 'my-data, giving a...
Hi Andrew, Thanks for the 'copy instruction. I know that's a big one too. Number one is to use 'do when i need code in the layout. Number two is use 'copy if...
... I would save a copy as a backup. ... try: insert at my-data x buffer ... try: remove/part at my-data x 7 ... USAGE: REMOVE series /part range DESCRIPTION: ...
Thanks! That works great. I had managed to get it into a loop instead of repeating each statement, but this is how it's supposed to be done. I tried to get the...
... reported before. ... Easier would be just: button blue / 1.2 "Delete" [ insert buffer copy/part my-data 7 ] And instead of using the magic number "7" all...
Hi all, I'm a newbie to Rebol so please excuse if this is basic. As a first exercise I am trying to write a little program which collects some data off a...
Hi John, ... I'm not sure if this is what you're after, but to do a search from Yahoo for instance, the following will grab the results webpage. (For a search...
I am trying to use Rebol to automatically complete a web page html form (a login form) but have not managed to get it to work yet. Using Rebol console to test...
Hello all, get Sun Certified!! Be a sun certified java programmer(SCJP) learn from a Sun certified Java Programmer who has scored 93%. Learn all that you need...
Hi, I wrote small script which tests activity of some web server. When I run this script from shell like: # rebol monito.r that's OK, but when I write at shell...
Mirek, I've passed your question onto the Rebol user list. Hopefully they'll have an answer for you. If you want to subscribe to this list, send an email to: ...
Hy I did something like that on BeOS runnig a Rebol 5Pro script from a Bash script writting rebol -s download.r & and that works correctly M.B Subject :...
Hi. I have a problem using request-date in Rebol\view. I want the requester to popup if the user push a button, but the requester dosn't popup. it seems that...
... Hi Jacob, The following should do what you want... view layout [ button "Select Date" [ d: request-date date/text: to-string d show date ] ; Following just...