overte/scripts/system/html/record.html
2017-04-14 16:13:45 +12:00

81 lines
3.2 KiB
HTML

<!--
// record.html
//
// Created by David Rowe on 5 Apr 2017.
// Copyright 2017 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
-->
<html>
<head>
<title>Record</title>
<link rel="stylesheet" type="text/css" href="css/edit-style.css">
<link rel="stylesheet" type="text/css" href="css/record.css">
<script type="text/javascript" src="js/record.js"></script>
</head>
<body>
<div class="title">
<label>Record</label>
</div>
<hr />
<div id="recordings">
<div>
<table id="recordings-playing">
<colgroup>
<col />
<col id="unload-column" />
</colgroup>
<thead>
<tr>
<th>Recordings Being Played</th>
<th>Unload</th>
</tr>
</thead>
<tbody id="recordings-list"></tbody>
<tbody id="instructions" class="hidden">
<tr>
<td colspan="2">
<p>If you're in your own sandbox or are a domain administrator:</p>
<ul>
<li>Right-click the High Fidelity Sandbox icon in your system tray and click &ldquo;Settings&rdquo;.</li>
<li>In the &ldquo;Scripts&rdquo; section add a new script URL, playRecordingAC.js, and set the number of instances to 1 or more.</li>
<li>Click &ldquo;Save and restart&rdquo;.</li>
<li>Now you can play recordings in the domain!</li>
</ul>
<p><input id="hide-info-button" type="button" value="OK" /></p>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td id="footer-text" colspan="2">
Number of available instances: <span id="players-unused"></span>
<input id="show-info-button" type="button" value="i" />
</td>
</tr>
</tfoot>
</table>
</div>
<div>
<input id="load-button" type="button" value="Load" disabled />
</div>
</div>
<div id="spinner" class="hidden">
<img src="../../../resources/icons/loadingDark.gif" />
</div>
<div id="record-controls">
<div>
<input id="record-button" class="red" type="button" value="Record" />
</div>
<div class="property checkbox">
<input type="checkbox" id="finish-on-open">
<label for="finish-on-open" id="finish-on-open-label">Finish recording when open dialog/tablet</label>
</div>
</div>
<script>
onBodyLoaded();
</script>
</body>
</html>