InfoCenter Highway

InfoCenter Highway
VendorImage5 - InfoCenter Highway.jpg

InfoCenter Highway vendor image.
Creator Nelson Jenkins
Launch year 2012
Company Gentek
Availability Upgraded to InfoCenter

The InfoCenter Highway is an electronic highway sign sporting more characters over the InfoCenter Mobile, designed to be mounted on an overpass or gantry. However, it can be used anywhere. Additionally, it can be controlled remotely using a server box, as well as through the InfoCenter API. It was released in July 2012 along with the InfoCenter Personal.

This page covers the InfoCenter Highway v2. For v3 and above, see InfoCenter. Because of the complexity in the new system and licensing restrictions, v3 is not a free update.

Setup

  1. Rez a display and a server.
  2. Open the server's inventory and edit the _config notecard. Change @ID's value to something memorable - for example, if you have a display over Highway 15, use the display ID "Highway 15".
  3. Edit the text. See "Formatting" below for more information on this. Then, save the notecard.
  4. Click the display and select "Set Disp ID". Then, enter the display ID you set in step 1.

Formatting

The general format for each frame of text is the following:

>5

The number of seconds for that frame. This will start a new frame, and must be preceded by the > character. Can be an integer (5) or a floating-point decimal (5.9). Do not include this line when setting custom text through the menu.

This is text
[b]This is blue[/b]
This is the end!

Three lines of text, maximum 16 characters each excluding formatting codes.

Then, repeat for each frame. The default _config notecard has an example.

The InfoCenter supports the following formatting codes, used similarly to BBCode:

  • [r]Text[/r] - Red
  • [o]Text[/o] - Orange
  • [y]Text[/y] - Yellow
  • [g]Text[/g] - Green
  • [b]Text[/b] - Blue
  • [p]Text[/p] - Purple
  • [a]Text[/a] - Amber
  • [x]Text[/x] - Rainbow

Text not in these color formatting brackets is rendered white. Multiple colors can be used in the same line. They are automatically closed at the end of each line, so for example:

[o]This is orange
But this is not[/o]

Additionally, the sign will throw an error when it reaches the [/o] command since there wasn't a [o] command on that line.

Note that these formatting codes are excluded from the maximum letter count per line.

Use the caret (^) for a full box character.

Additional Features

You can give other people access to the below configuration menus with the @ACCESS, @WHITELIST, and @BLACKLIST values. They are explained in the notecard.

The server comes with these menu functions:

  • To stop text output, click it and select "Stop Text". This won't clear the text.
  • To clear text on all displays with the same ID, click it and select "Clear Text".
  • To set custom text without editing the notecard, click it and select "Custom Text", then put text in the input box as you would in the notecard. However, do not include the time command (e.g. >5) - just include the 3 lines of text with formatting.
  • To resume automatic text, click it and select "Start Text".

The display comes with some menu functions too, which can be accessed by anyone with access to the server with the same ID:

  • To set a display to a single frame of text without a server, click it and select "Custom Text". This works the same as the server-side function.
  • To clear a display, click it and select "Clear Text". You will want to change the display ID to something unused if you have a server running on the same ID, or else it will keep showing text.

InfoCenter API

The InfoCenter Highway can be controlled using the following LSL command:

llRegionSay(-102030405,llDumpList2String(["ICSET",displayID,line1,line2,line3],"#$"));

So, for example:

llRegionSay(-102030405,llDumpList2String(["ICSET","Default","This is text","[b]This is blue[/b]","This is the end!"],"#$"));

Formatting codes can be used. This is similar to using the Custom Text option directly on the display. Note that this command is only for the InfoCenter Highway; the InfoCenter Personal has a different format.