-
Notifications
You must be signed in to change notification settings - Fork 6
/
help.html
84 lines (80 loc) · 2.53 KB
/
help.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<header>
<meta charset="UTF-8">
</header>
<style>
body {
font-family: Teletext2, Helvetica, Arial, Sans-Serif;
background-color: black;
color: white;
}
.black {color:black;background-color:white;}
.red {color:red;background-color:white}
.green {color:#00ff00;}
.yellow {color:yellow;}
.blue {color:blue;background-color:white;}
.magenta {color:magenta;}
.cyan {color:cyan;}
.white {color:white;}
.panel {
display: inline-block;
background-color:#666666"
}
</style>
<body>
<div>
<span class="panel" >
<b style="color:yellow;">SPECIAL KEYS</b><br/>
Page Up - Show next page of carousel<br/>
Page Down - Show previous page of carousel<br/>
F11 - Hide/Reveal<br/>
CTRL-Z - Undo<br/>
Alt-Gr - Show control codes<br/>
</span>
</div>
<div>
<b style="color:yellow;">TEXT COLOURS</b><br/>
<span class="panel">
<span style="background-color:white;color:red;">A</span> Shift-F1 - Red text<br/>
<span class="green">A</span> Shift-F2 - Green text<br/>
<span class="yellow">A</span> Shift-F3 - Yellow text<br/>
<span class="blue">A</span> Shift-F4 - Blue text<br/>
<span class="magenta">A</span> Shift-F5 - Magenta text<br/>
<span class="cyan">A</span> Shift-F6 - Cyan text<br/>
<span class="white">A</span> Shift-F7 - White text<br/>
<span class="black">A</span> Shift-F8 - Black text<br/>
</span><br/>
<b style="color:yellow;">GRAPHIC COLOURS</b><br/>
When the small graphics cursor is displayed then pressing space will toggle the pixel on and off.<br/>
<span class="panel" >
<span class="red"></span> Ctrl-F1 - Graphics red<br/>
<span class="green"></span> Ctrl-F2 - Graphics green<br/>
<span class="yellow"></span> Ctrl-F3 - Graphics yellow<br/>
<span class="blue"></span> Ctrl-F4 - Graphics blue<br/>
<span class="magenta"></span> Ctrl-F5 - Graphics magenta<br/>
<span class="cyan"></span> Ctrl-F6 - Graphics cyan<br/>
<span class="white"></span> Ctrl-F7 - Graphics white<br/>
<span class="black"></span> Ctrl-F8 - Graphics black<br/>
</span>
</div>
<div class="panel">
<b style="color:yellow;">EFFECTS</b><br/>
<span>
CTRL-H - Flash<br/>
CTRL-I - Steady<br/>
CTRL-J - End Box<br/>
CTRL-K - Start Box<br/>
CTRL-L - Normal height<br/>
CTRL-M (enter) - Double height<br/>
CTRL-R - Conceal display<br/>
CTRL-Y - Contiguous graphics<br/>
CTRL-T - Separated graphics<br/>
CTRL-U - Black background<br/>
CTRL-B - New background<br/>
CTRL-W - Hold graphics<br/>
CTRL-X - Release graphics<br/>
</span>
</div>
</body>
</html>