Script Library: 1238 scripts
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 
Play AVI Video with MCI
mci-play-avi-.r1.1 KB
9 Nov 2009
Demonstrates how to play AVI video files using Windows API mciExecute. (Video codec in demo video is MS-CRAM (Microsoft Video 1), audio is PCM). For more information about mciExecute commands, Google multimedia command strings and see: http://msdn.microsoft.com/en-us/library/dd743572(VS.85).aspx Taken from the tutorial at http://musiclessonz.com/rebol.html [...]
author: [unknown]
Multiple Column Data Grids
multi-column-data-grids7.9 KB
23 Sep 2009
A demonstration of how to create your own home made listview types of multiple column data grids. Easier to use than the 'list style, and built entirely using native VID, so completely adjustable to your needs. Many useful features are demonstrated, such as user editing of data in the grid, saving and loading of data to/from [...]
author: nick
Number Verbalizer
number-verbalizer.r3.1 KB
13 Mar 2010
Converts number values to their spoken English equivalent. (i.e., 23482194 = Twenty Three million, Four Hundred Eighty Two thousand, One Hundred Ninety Four ). This code was created for a check writing application, but is perhaps useful elsewhere. The algorithm was partially derived from the article at http://www.blackwasp.co.uk/NumberToWords.aspx [...]
author: nick
Obfuscation
obfuscation.r1.1 KB
1 Sep 2009
[no purpose header found]
author: nick
Object Namespaces
object-namespaces.r1.5 KB
29 Jun 2008
A short example to demonstrate how name spaces can be managed in Rebol, using objects. Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html
author: nick antonaccio
Object Game
objects-example.r1.9 KB
29 Jun 2008
A little game to demonstrate Rebol objects. Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html
author: nick antonaccio
Generic Playing Card Game Framework
playing-card-framework.r2.9 KB
13 Jan 2010
A simple demonstration of how to use the images in %playing-cards.r to create card games. In this example, the cards are arranged in a way that can be used to play the game of Freecell. The rules of that particular game are not enforced in this example, to keep the code simple and under- standable (you can play a full game of Freecell [...]
author: nick
Paypal Reports
paypal-reports.r2.6 KB
22 Jan 2013
This is a beginner's example taken from the tutorial at: http://re-bol.com/business_programming.html It creates reports on columns and rows of data in a .csv table. The script demonstrates typical CSV file operations using parse, foreach, and simple series functions. The code performs sums upon columns, and selective calculations [...]
author: nick
Playing Card Example
playing-card-example.r39.1 KB
29 Jun 2008
An example demonstrating how to work with graphical playing cards. Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html
author: nick antonaccio
POINT OF SALE SYSTEM
pos.r12.6 KB
14 Mar 2010
This is a point of sale system (sales checkout, receipt printer, and data storage system) written using RebGUI. It may help provide some basic insight into the workings of RebGUI. Actually, the majority of this code manages user workflow - saving/retrieving receipts. The RebGUI parts are simple and short. Note that the username [...]
author: nick
Postal Barcode
postal-barcode.r771 bytes
9 Feb 2011
Demonstrates how to use the Intelligent Mail encoder dll from the US postal service. This script can also be found in the tutorial at http://re-bol.com
author: nick
Playing Card Images
playing-cards.r40.5 KB
13 Jan 2010
A data block of playing card images. Use the following code to view: do %playing-cards.r gui: [size 670x510 backdrop 0.150.0 across ] foreach [card label num color pos] cards [ append gui compose [ at (pos) image load to-binary decompress (card) ] view layout gui Taken from the tutorial at http://re-bol.com [...]
author: nick
Quick Color Guide
quick-color-guide.r765 bytes
23 Sep 2009
Provides a quick visual reference for all of REBOL's built in colors. Click the color to see it's tuple value. Taken from the tutorial at http://musiclessonz.com/rebol.html
author: [unknown]
Quick Manual
quick-manual.r1.6 KB
15 Sep 2009
A quick and dirty way to print out help for all built in functions. Also includes a complete list of VID styles ("view layout" GUI widgets), VID layout words, and VID facets (standard properties available for all the VID styles). Give it a minute to run... Taken from the tutorial at http://musiclessonz.com/rebol.html
author: nick
CGI Remote Console
remote-console.r2.5 KB
26 Sep 2009
Allows you to type REBOL code into an HTML text area, and have that code execute directly on your web server. The results of the code are then displayed in your browser. This essentially functions as a remote console for the REBOL interpreter on your server. You can use it to run REBOL code, or to call shell programs directly on [...]
author: [unknown]
RebGUI Spreadsheet Example
rebgui-spreadsheet.r882 bytes
17 Apr 2010
A tiny demo of RebGUI's sheet widget, with save, load, print and data view features. Taken from the tutorial at http://re-bol.com
author: nick
RebGUI image Example
rebgui-image.r
 documentation
v:1.0.0
1.3 KB
4 Jun 2007
RebGUI tutorial; display an image, with tip and close action
author: Brian Tiffin
RebGUI table Example
rebgui-table.r
 documentation
v:1.0.0
1.7 KB
4 Jun 2007
RebGUI tutorial; display a table
author: Brian Tiffin
RBBS - REBOL Bulletin Board Tutorial
rbbs.rv:1.0.0
16.9 KB
5 Jun 2005
A CGI Web Bulletin Board / Message Board
author: carl sassenrath
RebGUI User List Demo
rebgui-users.r2.3 KB
24 Apr 2010
A simple RebGUI demo. Inspired by the tutorial at http://snappmx.com Taken from the tutorial at http://re-bol.com
author: nick
RebGUI Editor
rebgui-editor.r2.5 KB
18 Apr 2010
A minimal text editor program, written to demonstrate menus and a few other basic features of RebGUI. Taken from the tutorial at http://re-bol.com
author: nick
RebGUI span Example
rebgui-sizing.r
 documentation
v:1.0.0
1.9 KB
5 Jun 2007
RebGUI tutorial; display images, with widget span and window resizing
author: Brian Tiffin
Relative Positioning In Resized VID Window
resize.r919 bytes
17 Apr 2010
A simple example of how to position widgets relative to one another in a resized VID GUI window. Taken from the tutorial at http://re-bol.com
author: nick
Remove Comments
remove-comments.r463 bytes
29 Jun 2008
A parse example that removes comments from Rebol code. Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html
author: nick antonaccio
RebGUI Card File
rebgui-card-file.r2.0 KB
10 Apr 2010
This is an implementation of the Card File program at http://www.rebol.org/view-script.r?script=card-file.r using RebGUI instead of VID. Notice that the GUI is resizable, the text fields have undo/redo and spellcheck capabilities, requestors are modal, and all the other features of RebGUI are available. Taken from [...]
author: nick