-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtranscriber2.html
51 lines (49 loc) · 1.72 KB
/
transcriber2.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
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="https://runeapps.org//nis/nis.css" />
<link rel="stylesheet" type="text/css" href="https://runeapps.org//runeappslib.css" />
<script type="text/javascript" src="https://runeapps.org//runeappslib.js"></script>
<script type="text/javascript" src="https://runeapps.org//imagedetect.js"></script>
<script type="text/javascript" src="https://runeapps.org//alt1lib.js"></script>
<script type="text/javascript" src="https://runeapps.org//imagelibs/ocr.js"></script>
<script type="text/javascript" src="https://runeapps.org//imagelibs/dialogfull.js"></script>
<script type="text/javascript" src="https://runeapps.org//imagelibs/lorebook.js"></script>
<script type="text/javascript" src="Queue.js"></script>
<script type="text/javascript" src="uuid-random/uuid-random.min.js"></script>
<script type="text/javascript" src="transcriber2.js"></script>
<style>
.nisbutton {
width: 33%;
}
#options .nisbutton {
overflow: hidden;
height: 20%;
width: 100%;
white-space: no-wrap;
}
#output {
height: 40%;
overflow-y: auto;
}
#options {
height: 165px;
}
</style>
</head>
<body class="nis">
<input type="text" name="playername" value="Player Name" id="playername">
<input type="number" value="1" min="0" max="20" id="custom-indent" style="width:3em;" disabled>
<input type="checkbox" id="use-custom-indent">
<table>
<tr>
<td class="nisbutton" id="start-stop">Start</td>
<td class="nisbutton" id="clear">Clear</td>
<td class="nisbutton" id="export">Export</td>
</tr>
</table>
Auto-export dialogue <input type="checkbox" id="auto-export">
<div id="output"></div>
<div id="options"></div>
</body>
</html>