[REBOL] MySQL-protocol.r

2004-01-01 Thread Henrik Mikael Kristensen

Hi

I'm working with DocKimbel's wonderful mysql protocol version 0.9.9, but
I am getting a little worried because the site hasn't been updated since
2001 and last forum entry is 9 months old.

Is version 1.0 coming?

-- 
Regards,
Henrik Mikael Kristensen

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Market for Rebol programs/programmers?

2004-01-01 Thread Sabu Francis

Hi:
I was just curious: Is there a common market place 
(for want of a better term) for Rebol software/ Rebol 
programmers? where Rebol programmers can 
put up their wares for being picked up by larger companies?
As well as for employment?

Regards

-SF
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] rmoock + rugby where art thee??

2004-01-01 Thread Jason Cunliffe

Hi

Q1. I am looking for a program that I think was called "rmoock.r", an XML
socket server in Rebol based on Colin Moock's original java work for flash,
which has now grwon into to commercial app called "Unity"
http://www.reboltech.com/library/library.html
A sister of rmoock.r written in Python is "swocket"
http://swocket.sourceforge.net/

Alas, as is all too often the case, Rebol is really much too hard to find on
google :-(

Q2. Also where is Maarten Koopmen's rugby?
The "Rugby distribution" link from http://www.rebolforces.com/articles/hipe/
is dead.
There is a few script versions on rebol.com, not clear which is the right
one.

And there is Brett's excellent  "Introducing Rugby" article
http://www.codeconscious.com/rebol/articles/introducing-rugby.html
but the main download link from there is dead also :-(

So is http://www.rebol.org/cgi-bin/cgiwrap/rebol/search.r?find=rugby the
best/latest place to get rugby?

Q3. Is http://rebol.org now the prime up-to-date script library site
replacing http://www.reboltech.com/library/library.html ?

thanks and
New Year Positivity to you all...

- Jason

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: full screen

2004-01-01 Thread Gregg Irwin

Hi Anthony,

AM> ive read the manual for rebol and ive read the "easy
AM> vid" program in the rebol folder. the manual doesnt
AM> have anything about video operations in and the "easy
AM> vid" program doesnt seem to cover all of ther display
AM> opetions. is there a manual for video operations?

What exactly do you mean by "video operations"? Do you mean things you
can put into the effect block of a face? The View Developer's Guide
may have what you want. You can get to it from here:

http://www.rebol.com/docs-view.html

-- Gregg 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: games

2004-01-01 Thread Gregg Irwin

AR> Some of the better REBOL games aren't in the script library

AR> Doc Kimbel's reBOX

AR> Frank Sievertsen's Tetris 

AR> Alan's card games

Cyphre's Arcadia demo, and Oldes's(?) ReBOX with a scrolling world.

So, yes, REBOL is great for games that don't require a high refresh
rate on the display.

-- Gregg 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: games

2004-01-01 Thread A Rebol
Some of the better REBOL games aren't in the script library

Doc Kimbel's reBOX

Frank Sievertsen's Tetris 

Alan's card games

(or at least I couldn't find them there).

 
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: full screen

2004-01-01 Thread Ashley TrĂ¼ter

> Curiously, when inserted in a program, I observe a message in the top
> left corner. This message is either "no title" or the title given in
> the header program.

Just use title: ""


Regards,

Ashley
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [vid] List Query

2004-01-01 Thread Anton Rolls

You could modify the list's detect function and
capture 'down events. Being the list's feel
it will be from the list's point of view.

Anton.
 
> Hi,
> 
> I have a query on how to use list.
> I want to know the offset from the *window* of the mouse when I 
> press the down button.
> event/offset only gives me the offset from the text field of the 
> list. (see code below)
> 
> Any help would be appreciated.
> 
> Cheers Phil
> 
> 
> rebol []
> 
> data: ["AAA" "BBB" "CCC" "DDD" "EEE" "FFF" "GGG" "HHH"]
> 
> view layout [
> list [
> f: text 100 feel [
> engage: func [face action event] [
> if event/type = 'down [
> print event/offset
> ]
> ]
> ]
> ]
> supply [
> if count > length? data [face/show?: false exit]
> face/show?: true
> f/text: pick data count
> ]
> ]

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: full screen

2004-01-01 Thread Anton Rolls

The text is added by VIEW, unfortunately.
But you can work around it by doing:

view/new lay: layout [...]
lay/text: none
show lay
wait none

Anton

> Curiously, when inserted in a program, I observe a message in the top
> left corner. This message is either "no title" or the title given in
> the header program.
> 
> This is my code:
> 
> Rebol[
> title: "full screen layout"
> date: 1-jan-2004
> purpose: {FAQ
> Q - How to make a full screen, not a window?
> A - You need:
> . an offset of 0x0
> . no-title
> . a size get from system/view/screen-face/size
> }
> ]
> 
> view/options/offset layout [
> size system/view/screen-face/size 
> button "Unview" [unview]
> ] 'no-title 0x0
> 
> 
> Can we remove this message?

> -- 
> Best regards and Happy New Year
> Patrick

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: full screen

2004-01-01 Thread Patrick . Philipot

Hello Gregg,

Wednesday, December 31, 2003, you wrote:

GI> view/options/offset layout [
GI> size system/view/screen-face/size button "Unview" [unview]
GI> ] 'no-title 0x0

As often, when I see a valuable code, I have made a little program to
kept it in a folder that I have named "Good to know". I have there a
collection of Rebol code of interest.

Curiously, when inserted in a program, I observe a message in the top
left corner. This message is either "no title" or the title given in
the header program.

This is my code:

Rebol[
title: "full screen layout"
date: 1-jan-2004
purpose: {FAQ
Q - How to make a full screen, not a window?
A - You need:
. an offset of 0x0
. no-title
. a size get from system/view/screen-face/size
}
]

view/options/offset layout [
size system/view/screen-face/size 
button "Unview" [unview]
] 'no-title 0x0


Can we remove this message?



-- 
Best regards and Happy New Year
Patrick

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.