Script Library: 1247 scripts
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Help for contribute a script

Library header: Plugin

If a script has a platform: [ ... plugin ...] entry (meaning it is certified as runnable under the REBOL browser plugin) it must also have a Library header of plugin to specify the settings needed by the plugin

Values are:

plugin: [size: pair! version: string!]

Where:

  • size -- the width and height of the window needed for the script to display properly. This value must be present. Minimum size is 100x100.
  • version -- specific version number of the plugin, if the script needs anything other than the most recent version
    • This is optional -- omit if you do not mind which version is run
    • The only version currently allowed is "http://www.rebol.com/plugin/rebolb4.cab#Version=0,5,0,0"

Example:

rebol [ ... library: [ ... plugin: [size: 800x1000] ... ] ]

Full help for contributing a script