Skip to content
angerangel edited this page Mar 19, 2013 · 1 revision

USAGE

   LOAD-GUI 

DESCRIPTION

Download current Spahirion's R3-GUI module from web.

LOAD-GUI is a function value.

#SOURCE

load-gui: make function! [  [
    {Download current Spahirion's R3-GUI module from web.}
    /local data
][
    print "Fetching GUI..."
    either error? data: try [load http://www.saphirion.com/development/downloads-2/files/r3-gui.r3] [
        either data/id = 'protocol [print "Cannot load GUI from web."] [do err]
    ] [
        do data
    ]
    exit
] ]
Clone this wiki locally