[REBOL] Re: error in reading url
From: hallvard:ystad:helpinhand at: 27-Nov-2001 9:37
Sorry for the delai, I got distracted and then went to bed.
The problem is you redefine the word 'open, which is used to open a port when retrieving
a URL. You don't seem to use the word anywhere else, so change the line
open: button red white yellow "Open selection" [openurl] return
to either
open-it: button red white yellow "Open selection" [openurl] return
or
button red white yellow "Open selection" [openurl] return
If you want to make sure you don't make a similar mistake again, consider putting 'protect-system
in top of your script. You will then get an error (I think?) if your code redefines anything
of the sort.
~H
Dixit Julien Bailly (22.34 26.11.2001):