< Rebol Programming

USAGE:

BROWSE value /only 

DESCRIPTION:

Opens the default web browser.

BROWSE is a native value.

ARGUMENTS

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

REFINEMENTS

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

SOURCE CODE

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

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.