Search the web
Sign In
New User? Sign Up
Rebol_New · For beginning Rebol programmers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 187 - 216 of 314   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
187
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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...
Send Email
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...
hijim@...
jimclatfelter
Offline Send Email
Oct 23, 2001
2:30 am
201
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...
Andrew Martin
taorebol
Offline Send Email
Oct 23, 2001
2:48 am
202
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...
hijim@...
jimclatfelter
Offline Send Email
Oct 24, 2001
1:34 am
203
... 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: ...
Andrew Martin
taorebol
Offline Send Email
Oct 24, 2001
8:37 pm
204
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...
hijim@...
jimclatfelter
Offline Send Email
Oct 25, 2001
2:20 am
205
... 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...
Andrew Martin
taorebol
Offline Send Email
Oct 25, 2001
2:42 am
206
Thanks again Andrew, That works too. 'copy/part eliminates the last loop. Jim...
Jim Clatfelter
jimclatfelter
Offline Send Email
Oct 25, 2001
3:58 am
207
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...
John R
traderjruk
Offline Send Email
Oct 28, 2001
8:57 pm
208
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...
Carl Read
lunaread
Offline Send Email
Oct 29, 2001
2:16 am
209
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...
John R
traderjruk
Offline Send Email
Nov 3, 2001
9:13 pm
210
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...
java certification
sun_certific...
Offline Send Email
Nov 14, 2001
2:10 pm
211
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...
misotri
Offline Send Email
Jan 8, 2002
10:13 am
212
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: ...
Andrew Martin
taorebol
Offline Send Email
Jan 8, 2002
7:43 pm
213
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 :...
BOB ML
bob.ml@...
Send Email
Jan 17, 2002
8:37 pm
214 jbl1108
Offline Send Email
Jan 25, 2002
6:39 pm
215
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...
jbl1108
Offline Send Email
Jan 25, 2002
10:05 pm
216
... 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...
Carl Read
lunaread
Offline Send Email
Jan 25, 2002
11:25 pm
Messages 187 - 216 of 314   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help