2

The word browser is no longer working for me in Rebol2. Perhaps it can't download data from the rebol.com website. How can I get it working? I find nothing about this on stackoverflow.com or doing a google search.

draegtun
  • 22,441
  • 5
  • 48
  • 71
Louis
  • 21
  • 1
  • Just tested Rebol/View on OS X (Mavericks) here and the Word Browser (listed under the `/REBOL Central Folder/REBOL Documentation/`) worked fine for me. Do you still have a problem @Louis ? – draegtun Mar 18 '15 at 23:16

3 Answers3

1

Are you sure you're not looking for browse instead?

>> source browser
browser: undefined
>> source browse
browse: native [
    "Opens the default web browser."
    value [any-string!] "The URL or file to open"
    /only "Don't open a new window if possible"
]
GregP
  • 85
  • 6
1

You can download the whole package in this zip file: http://re-bol.com/wordbrowser.zip

NickA
  • 159
  • 1
  • 3
0

I'm regularly using the word browser, it works well on my GNU/Linux Debian Jessie machine.

>> write %wordbrowser.r read http://re-bol.com/wordbrowser.r
>> do %wordbrowser.r

Is your rebol/view interpreter correctly running?

Pierre
  • 530
  • 5
  • 13