Hubbry Logo
search button
Sign in
Oriel (scripting language)
Oriel (scripting language)
Comunity Hub
History
arrow-down
starMore
arrow-down
bob

Bob

Have a question related to this hub?

bob

Alice

Got something to say related to this hub?
Share it here.

#general is a chat channel to discuss anything related to the hub.
Hubbry Logo
search button
Sign in
Oriel (scripting language)
Community hub for the Wikipedia article
logoWikipedian hub
Welcome to the community hub built on top of the Oriel (scripting language) Wikipedia article. Here, you can discuss, collect, and organize anything related to Oriel (scripting language). The purpose of t...
Add your contribution
Oriel (scripting language)
Oriel
ParadigmImperative, Procedural
Designed byThe LeBlond Group, Inc.
First appeared1991
OSMicrosoft Windows

Oriel is a scripting language released with the Power Tools series of instructional books written by the LeBlond Group. Described in its documentation as a "graphics-based batch language", it was originally designed for Microsoft Windows 3.0 and released with the book Windows 3 Power Tools in 1991.[1] However, versions of the language were also bundled with Windows 3.1 Power Tools in 1992 and Windows NT Power Tools in 1994.

The suggested extension for an Oriel script file was ORL. Oriel was distributed with two executables: ORIEL.EXE, and MKRUNTIM.EXE. The former was the Oriel interpreter, which when invoked would prompt the user to choose a script file for execution. The latter gave the user the ability to create custom executables by bundling a script within a copy of the interpreter. In this way, an Oriel program could be distributed and run in the same way as any other Windows EXE.

The language was named after the oriel style of bay window. A window of that style is depicted in the icon distributed with the runtime.

Examples

[edit]

The following program displays a modal dialog box containing a hello, world message.

MessageBox(OK, 1, INFORMATION, "Hello, world!", "Oriel Says Hello", responseValue)

An Oriel program will always possess a main window over which a dialog box of this type would appear. The following code gives that window a title, maximizes it, and instructs it to remain open until the user closes it. This code also demonstrates retrieval of window information and use of string variables. A function call of SetWindow(MAXIMIZE) could replace the second and third lines.

{ Oriel comments are placed between curly brackets }
UseCaption("Welcome to Oriel")
WinGetActive(windowName$)
WinShow(windowName$, MAXIMIZE, resultValue)
MessageBox(OK, 1, INFORMATION, "Hello, world!", "Oriel Says Hello", responseValue)
WaitInput()

See also

[edit]

References

[edit]

Further reading

[edit]
  • Leblond, Geoffrey T.; Leblond, William B.; Palonus, Jennifer L. Windows 3 Power Tools. Bantam Computer Books. ISBN 0-553-35298-9.