AltME: REBOL3

Messages

Gregg
I haven't seen that exact error, so these are just my normal CALL tricks when I have issues.

Gregg
parse "12345" [2 skip -1 skip]
** Script error: value out of range: -1
** Where: parse
** Near: parse "12345" [2 skip -1 skip]
Is it a bug that negative skip values aren't supported?
Bo
Ashley: Thanks for the input, but I'm using Linux.
Gregg: In R3, 'call doesn't have a /show refinement.
Gregg
Ah, right, R3. Are you using the latest from Atronix? I had issues with earlier versions.
Bo
Yes, latest Atronix version.

Arie
Hi, can somebody point me to the latest r3-gui.r3 on the web? I find it very difficult to know what to use these days ;-) Atronix, Saphirion, RT website which is very outdated ...
Also, is there a REBGUI port for R3 available?
Henrik
There is no RebGUI for R3, as far as I know.
WRT, R3 GUI, well, I guess someone needs to dedicate more time to it.
NickA
Arie, the Atronix version is kept up most right now:  http://www.atronixengineering.com/downloads  The r3gui.r3 loaded by the 'load-gui in that version is at  http://rebol.atronixengineering.com/r3/r3-gui.r3    You need to use their version of r3 with that version of r3-gui.r3.
amacleod
Is there  a r3-view for raspberry pi?
amacleod
OK, got it...."load-gui" using arm binary....cool
amacleod
Anyone ever use r3 to display maps using openstreet map data or similar? Or know how to go about doing it....

GiuseppeC
Hi, is there a way create a EAN 128 barcode in REBOL 3 ?
Henrik
I made an EAN13 barcode generator for REBOL2 once. I don't know if that can be used to create an EAN128 one. Maybe they are too different.
GiuseppeC
Hi there to the Atronix People.
How do you read serial port data using Rebol 3 ?
I have to read it from a weight machine
Marco
There is also a EAN128 font.
Josh
gs: open serial://ttyUSB0/57600
written: false
gs/awake: func [evt][
     switch evt/type [
          read [
                print to-string evt/port/data
                read evt/port
                return true
          ]
          wrote [
                 written: true
                 return true
          ]
     ]
     false
]
write gs "m"
while [not written][
    wait [gs 1]
]
read gs
wait [gs 1]

Josh
Those using MAP! in R3, it has a significant bug:  https://github.com/zsx/r3/issues/30

Last message posted 161 weeks ago.