Ok, here is a little primer on programming syntax. Below is a sample file (CC2's CPU Usage Bargraph.1602) My comments are after the >'s.
[pre]
rows=2
cols=16
> these lines tell CC2 what type of display (2 rows, 16 columns)
[from00]
from="cc2_perfmon.ini"
sec="perf#"
opt01="id=@01"
opt02="full_name=\Process(_Total)\% User Time"
opt03="precision=0"
opt04="multiplier=1"
> tells CC2 what you want to pull (display) from cc2_perfmon.ini. Note the id=@01.
[from01]
from="cc2_hbar.ini"
sec="bar#"
opt01="id=@02"
opt02="options=0x84"
opt03="length=16"
opt04="start_type=2"
opt05="start=0"
opt06="pos_type=1"
opt07="pos=@01"
opt08="end_type=2"
opt09="end=100"
opt10="full_char_num=0"
opt11="full_line1=63"
opt12="full_line2=63"
opt13="full_line3=63"
opt14="full_line4=63"
opt15="full_line5=63"
opt16="full_line6=63"
opt17="full_line7=63"
opt18="full_line8=63"
opt19="empty_char_num=1"
opt20="empty_line1=0"
opt21="empty_line2=0"
opt22="empty_line3=0"
opt23="empty_line4=0"
opt24="empty_line5=0"
opt25="empty_line6=0"
opt26="empty_line7=0"
opt27="empty_line8=0"
opt28="int_char_num=2"
> display information for a horizontal bargraph. You usually do not need to know anything about the options here. Just note opt3. length = 16 for a 633 display. And opt01="id=@02".
[screen]
screen_name="CPU Usage Bargraph"
options=0
alt_delay=5000
> basic screen info. screen_name is what is displayed in the CC2 config screen. options=0 is left justify. alt_delay is the amount of time (5 seconds in this case) that CC2 displays this screen before going to the next one.
[r00]
options=10
> 1st row options. options=10 means right scrolls the text if it longer than 16 characters.
[r00-i00]
string="CPU Use: "
> 1st row 1st item, simply text to display.
[r00-i01]
id=@01
options=1
length=3
> 1st row 2nd item. Did you remember to note the id=@01 (CPU %). Right justified and fixed to a length of 3.
[r00-i02]
string="%"
> 1st row 3rd item, simply text to display.
[r01]
options=0
> 2nd row options. options=0 means left justify.
[r01-i00]
id=@02
> 2nd row 1st item, the bargraph display
This is the pure basics of programming CC2 screens. If you can digest this, you are 90% of the way to being able to program your own screens.
Questions?
Once you understand this and write a few of your screens, I can give you several other pointers. OK?
Jim