[REBOL] Re: sending data via usb

2004-02-14 Thread Gabriele Santilli
Hi Graham, On Friday, February 13, 2004, 10:46:44 PM, you wrote: GC Has anyone done any work at sending/receiving data from a GC virtual serial port ( USB ). Is it the same as driving a real GC serial port? I need to drive a USB modem which I haven't GC purchased yet. As long as Windows

[REBOL] Re: oss revisited (briefly!)

2004-02-14 Thread Robert M. Münch
On Fri, 13 Feb 2004 12:29:51 -0500, Rod Gaither [EMAIL PROTECTED] wrote: I don't use Java as a developer myself but I am now using Java based products every day. Hi, that's what I try to avoid too. As I'm doing a lot of software project proposal evaluation for my customers, the first

[REBOL] Re: OT Software Articles

2004-02-14 Thread SunandaDH
Rod: Some interesting articles I tripped over today from a ./ entry. http://www.edge.org/3rd_culture/lanier03/lanier_index.html Interesting, if somewhat bizarre. Thanks for the links. Did you see Lee Smolin's response: http://www.edge.org/discourse/gordian.html comparing Jaron's

[REBOL] Re: [VID][edge] How do I remove 'bevel from edge?

2004-02-14 Thread Ashley Trter
Thanks Gabriele, The line: if face/edge [face/edge/effect: pick [ibevel bevel] face/state] is the culprit. I've now got it working by this simple addition to the 'init block: feel/redraw: func [face act pos][ face/text: either face/state [face/texts/2]

[REBOL] Re: [VID][edge] How do I remove 'bevel from edge?

2004-02-14 Thread Brett Handley
Hi Ashley, I've now got it working by this simple addition to the 'init block: feel/redraw: func [face act pos][ face/text: either face/state [face/texts/2] [face/texts/1] ] There is only one small problem with your change - you are modifying the shared feel object. Instead of using init,