[REBOL] Re: Improved SOURCE function

2001-05-05 Thread Larry Palmiter
Hi Anton > Good idea Larry, :-) > I saw somewhere how to refer to inbuilt word > if you are redefining a word. > If you can refer this way to source, then > you can truly patch the source word. > > Something like (pseudo-code): > > source: func [word][ > either it's-a-path? word [ > ; all your pa

[REBOL] Re(2): Pretty Pictures! in Messages 1.3.5 - spider

2001-05-05 Thread Anton
Good idea. Watch out for loops, though! My site has a folder of favourite reb-sites in it. That could lead to an infinite loop. Anton. > BTW - a suggestion for your REBOL news site. How about coding a > spider to check for new and changed REBOL scripts appearing on the > REB sites linked to by

[REBOL] Re: Improved SOURCE function

2001-05-05 Thread Larry Palmiter
Hi Blaz > I grabbed the src.r script, put it in my rebol directory, and ran > src.r, with the following result... > > >> system/version > == 1.1.0.1.1 > >> src system > Sorry about that. In this case, SRC is just calling the the built-in SOURCE function and it is that function which appears to

[REBOL] Re: Improved SOURCE function

2001-05-05 Thread Anton
Good idea Larry, I saw somewhere how to refer to inbuilt word if you are redefining a word. If you can refer this way to source, then you can truly patch the source word. Something like (pseudo-code): source: func [word][ either it's-a-path? word [ ; all your patching co

[REBOL] Re: Improved SOURCE function

2001-05-05 Thread Carl Read
On 06-May-01, Blaz Segavac wrote: > Hello Larry > On 06-May-01, Larry Palmiter wrote: >> Hi all, >> I got tired of the SOURCE function not working for items inside >> objects, so I wrote an improved version SRC which will do so. When >> the argument is not a path, it simply calls SOURCE. I stole

[REBOL] Re: Improved SOURCE function

2001-05-05 Thread Blaz Segavac
Hello Larry On 06-May-01, Larry Palmiter wrote: > Hi all, > > I got tired of the SOURCE function not working for items inside > objects, so I wrote an improved version SRC which will do so. When > the argument is not a path, it simply calls SOURCE. I stole the hard > part of the code from Doc Ki

[REBOL] Re: Real World API examples?

2001-05-05 Thread Larry Palmiter
Hi Terry Not sure if this is real world, but here is a script which shows how to access the C-Runtime Library on Windows. This runtime library is crtdll.dll in the Windows/System directory. You can view the functions available by right-clicking on the DLL and choosing Quickview (if you have it in

[REBOL] Re: Help with parsing

2001-05-05 Thread Brett Handley
Hi Stephen, The issue you have in the function below is that you are using a future feature of Rebol parse :) In particular your use of "TO pattern" seems reasonable but at the moment the pattern supplied to TO and THRU has to be a single value not a composite parse rule. I believe there was ment

[REBOL] Real World API examples?

2001-05-05 Thread Terry Brownell
Hello again. Just looking at the API .dll side of view/pro and was wondering if there are any "real world" examples for Windows out there? Terry Brownell -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Improved SOURCE function

2001-05-05 Thread Larry Palmiter
Hi all, I got tired of the SOURCE function not working for items inside objects, so I wrote an improved version SRC which will do so. When the argument is not a path, it simply calls SOURCE. I stole the hard part of the code from Doc Kimbel's most excellent extended help function which is also an

[REBOL] Help with parsing

2001-05-05 Thread Stephen Clarke
I am a new to Rebol and have been experimenting with the parse function I have tried to find the latest date from a line in a website where the date follows a given piece of text but is followed by either a tag or an unknown piece of text. The line also contain dates to be ignored as they follo

[REBOL] Re: Pretty Pictures! in Messages 1.3.5

2001-05-05 Thread Carl Read
On 06-May-01, [EMAIL PROTECTED] wrote: > Messages 1.3.5 is complete and it now supports uploading images to > your news site! To see Messages in action with news, discussion > forums, and classified ads, including pretty pictures, go to the > following URL... > http://www.fargonews.com Yep - th

[REBOL] [ANN] the_sea 0.0.13

2001-05-05 Thread Ingo Hohmann
Hi Rebolers, the Simple Easy Addressbook has reached the Version 0.0.13, is now working with /View 1.1, and I am already using it. If someone like to have a look at it, it should be downloadable from here: http://www.h-o-h.org/the_sea.r Changes: - included all functions needed - highly dynami

[REBOL] Re: is there a better way?

2001-05-05 Thread Ingo Hohmann
Hi Rishi, Once upon a time Rishi Oswal spoketh thus: > wondering if there is a better way to do the following > lines of code (rather than using so many if > statements) > > menu-choice: choice 150 "Menu1" "Menu2" "Menu3" [ > if ((first value) = "Menu1") >[menu-panel/pane: menu1 show menu-p

[REBOL] Re: pop-up windows

2001-05-05 Thread Ingo Hohmann
Hi Rishi, ... and yet another way ... >> show-popup layout [ banner "test" vtext "aso ..." ] >> hide-popup kind regards, Ingo Once upon a time Rishi Oswal spoketh thus: > Hi. I was wondering if there is a way to create a > pop-up window in rebol/view. I

[REBOL] Re: pop-up windows

2001-05-05 Thread Rishi Oswal
so that's how you do it. thanks. good to know.. rishi --- Sven Drieling <[EMAIL PROTECTED]> wrote: > Am Sam, 05 Mai 2001 schrieb Rishi Oswal: > > Hallo Rishi, > > > Hi. I was wondering if there is a way to create a > > pop-up window in rebol/view. I wanted to create a > > In the script.libra

[REBOL] Re: pop-up windows

2001-05-05 Thread Rishi Oswal
thanks. 'request is just what i needed! rishi --- Rishi Oswal <[EMAIL PROTECTED]> wrote: > Hi. I was wondering if there is a way to create a > pop-up window in rebol/view. I wanted to create a > pop-up "Confirm" dialog window with an "Ok" and > "Cancel" button but haven't figured out a general

[REBOL] Re: is there a better way?

2001-05-05 Thread GS Jones
From: "Rishi Oswal" > wondering if there is a better way to do the following > lines of code (rather than using so many if > statements) > > menu-choice: choice 150 "Menu1" "Menu2" "Menu3" [ > if ((first value) = "Menu1") >[menu-panel/pane: menu1 show menu-panel] > if ((first value) = "Menu

[REBOL] Re: pop-up windows

2001-05-05 Thread Graham Chiu
On Sat, 5 May 2001 12:47:18 -0700 (PDT) Rishi Oswal <[EMAIL PROTECTED]> wrote: > Hi. I was wondering if there is a way to create a > pop-up window in rebol/view. I wanted to create a > pop-up "Confirm" dialog window with an "Ok" and > "Cancel" button but haven't figured out a general way Try

[REBOL] Re: pop-up windows

2001-05-05 Thread GS Jones
From: "Rishi Oswal" > Hi. I was wondering if there is a way to create a > pop-up window in rebol/view. I wanted to create a > pop-up "Confirm" dialog window with an "Ok" and > "Cancel" button but haven't figured out a general way > to create a multi-window app. I have noticed the > 'alert function

[REBOL] Re: pop-up windows

2001-05-05 Thread Sven Drieling
Am Sam, 05 Mai 2001 schrieb Rishi Oswal: Hallo Rishi, > Hi. I was wondering if there is a way to create a > pop-up window in rebol/view. I wanted to create a In the script.library is this dialog.r example schnipp dialog: layout [ backdrop effect [gradient 1x1 0.0.0 0.

[REBOL] is there a better way?

2001-05-05 Thread Rishi Oswal
wondering if there is a better way to do the following lines of code (rather than using so many if statements) menu-choice: choice 150 "Menu1" "Menu2" "Menu3" [ if ((first value) = "Menu1") [menu-panel/pane: menu1 show menu-panel] if ((first value) = "Menu2") [menu-panel/pane: menu2 show

[REBOL] pop-up windows

2001-05-05 Thread Rishi Oswal
Hi. I was wondering if there is a way to create a pop-up window in rebol/view. I wanted to create a pop-up "Confirm" dialog window with an "Ok" and "Cancel" button but haven't figured out a general way to create a multi-window app. I have noticed the 'alert function but it is not sufficient for my

[REBOL] Re: IRSee.r export level encryption.. and a question.

2001-05-05 Thread Terry Brownell
Ok, the encryption strength is down to the export level. A new version can be had by reloading the IRSee script at the LFReD rebsite. Q. How can I disable the "Blue Light Special", Rebol is working "R" graphic? Terry Brownell - Original Message - From: "Holger Kruse" <[EMAIL PROTECTED]

[REBOL] Re: Newer Rebol Dictionary?

2001-05-05 Thread Paolo Russo
>HI > >I have been trying to learn Rebol and I found this nice file from >Rebol website: >"REBOL Dictionary for 2.1.92.3.1 > >Generated by REBOL on 28-Oct-1999/17:40:32-7:00 >Copyright © 1997-1999 REBOL Technologies" > >It's nice Html- document but too old for a reference.. Is there any >newer

[REBOL] Re: Newer Rebol Dictionary?

2001-05-05 Thread Allen Kamp
The "words" script is a good resource to use instead of the old dictionary . It is in the documentation folder on the REBOL/View desktop. And of course there is always 'help and 'what from the console. Cheers, Allen K - Original Message - From: "Joanna Kurki" <[EMAIL PROTECTED]> To: <[E

[REBOL] Re: Creating PNGs / BMPs without saving files?

2001-05-05 Thread Holger Kruse
On Sat, May 05, 2001 at 03:18:19PM +1000, Brett Handley wrote: > Just curious. > > The only reference I've found so far to creating a particular format image > is on the SAVE function. > > If I wanted to create an email with an embedded image without having to save > an image file first how coul

[REBOL] Newer Rebol Dictionary?

2001-05-05 Thread Joanna Kurki
HI I have been trying to learn Rebol and I found this nice file from Rebol website: "REBOL Dictionary for 2.1.92.3.1 Generated by REBOL on 28-Oct-1999/17:40:32-7:00 Copyright © 1997-1999 REBOL Technologies" It's nice Html- document but too old for a reference.. Is there any newer available,

[REBOL] Creating PNGs / BMPs without saving files?

2001-05-05 Thread Brett Handley
Just curious. The only reference I've found so far to creating a particular format image is on the SAVE function. If I wanted to create an email with an embedded image without having to save an image file first how could I do it? The only way I've thought of is to create a special memory:// sch

[REBOL] Re: IRSee.r with ENCRYPTED Private Chat Rooms..oh ya.

2001-05-05 Thread Holger Kruse
On Sat, May 05, 2001 at 04:07:09AM -0700, Terry Brownell wrote: > > IRSee now has FULLY ENCRYPTED private chat rooms. Even I can't read em! To ensure compatibility between users having the export and full version of /Pro you should limit the encryption strength to what the export version can sup

[REBOL] Map areas

2001-05-05 Thread Paul Tretter
How do you handle map areas like websites have. How do you control the where a person clicks on the map if the screen dimensions could not be determined by the end user. Paul Tretter -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subje

[REBOL] IRSee.r with ENCRYPTED Private Chat Rooms..oh ya.

2001-05-05 Thread Terry Brownell
IRSee now has FULLY ENCRYPTED private chat rooms. Even I can't read em! To use... 1. Pick a room name, any name (please leave "General" unencrypted) 2. Enter a Handle/Name 3. Enter a string like "The geese fly east at noon", one that only you and your comrades know. 4. Hit "Enter" and enjoy

[REBOL] Re: Newbie question...

2001-05-05 Thread Graham Chiu
On Sun, 6 May 2001 11:41:57 +0200 "Libertysurf" <[EMAIL PROTECTED]> wrote: > But now, why do I get "none" at each request ? Could > anybody give me some help ? Try this, and watch out for line wrapping... rebol [] random/seed now menulistes: [] liste_d: copy/deep [ "Moi et famille" [main

[REBOL] Re: Newbie question...

2001-05-05 Thread GS Jones
From: "Libertysurf" > My script tries to let the user choose a list of words > and to make these words appear in a random order, > at request. I tested the script whith a single block and it worked. > > But now, why do I get "none" at each request ? Could anybody > give me some help ? > > random

[REBOL] Intuit Interchange Format / Read, write in Rebol

2001-05-05 Thread Peter H. Geddes
Hi! Has anyone here written Rebol code to use IIF (Intuit Interchange Format) data? For IIF see: http://www.quickbooks.com/support/ or http://www.quickbooks.com/support/faqs/win/1208.html I note that Quick!iifX by Synergration http://www.quickiifx.com/home.htm provides an ActiveX object interfa

[REBOL] Newbie question...

2001-05-05 Thread Libertysurf
Hi everybody, I'm very happy to learn Rebol, and I appriciate the work of all of you. The list is really dynamic and the feedbacks are interresting. As a Newbie, I'm trying to write some lines that Rebol could understand ! ;-))) My script tries to let the user choose a list of words and to ma

[REBOL] Intuit Interchange Format / Read, write in Rebol

2001-05-05 Thread Peter H. Geddes
Has anyone here written Rebol code to convert ASCII <-> IIF (Intuit Interchange Format) data? The IIF is used by QuickBooks. For IIF and see: http://www.quickbooks.com/support/ or http://www.quickbooks.com/support/faqs/win/1208.html I note that Quick!iifX by Synergration http://www.quickiifx.com

[REBOL] Re: Panel How-to

2001-05-05 Thread Carl Read
On 05-May-01, Graham Chiu wrote: > On Fri, 04 May 2001 12:22:37 -0700 > Carl Sassenrath <[EMAIL PROTECTED]> wrote: >> Please send me an email if you find typos and such. >> > You have this: > "For debugging you may want to know see the location for the > subpanels, you can use this handy trick