REBOL Programming/Internal Utilities

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search

Contents

[edit] Internal Utilities

[edit] The Viewtop

The Viewtop is REBOL/View's builtin graphical desktop. It's mainly used to access programs available from various REBOL sites around the world. It can also be used to access files locally on your own PC.

[edit] Using The Viewtop

On first startup, the Viewtop will come up automatically.

You can change the default behavior in User Preferences.

To start the Viewtop from the console type:

>> desktop

[edit] Facts about the Viewtop

The Viewtop is written as a range of mezzanine functions using the VID graphical user interface system and is essentially open source.

[edit] The Text Editor

The text editor is handy for editing smaller scripts that are too large to write in the console. It's not very complex so it's not suited for larger projects. It can be launched from the console by writing:

>> editor ""

Or if you give a filename:

>> editor %script.r

You can then run scripts in the editor by pressing Ctrl-E.

You can also use it to view large data objects that are hard to study in the console:

>> editor system/view
Personal tools