Rebol Programming/browse

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

BROWSE value /only 

DESCRIPTION:[edit | edit source]

Opens the default web browser.

BROWSE is a native value.

ARGUMENTS[edit | edit source]

  • value -- The URL or file to open (Type: any-string)

REFINEMENTS[edit | edit source]

  • /only -- Don't open a new window if possible

SOURCE CODE[edit | edit source]

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"
]