overte/scripts/system/html/record.html

72 lines
2.7 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>
<div>
<table id="recordings-playing">
<thead>
<tr>
<th>Recordings Being Played</th>
<th>Unload</th>
</tr>
</thead>
<tbody id="recordings">
</tbody>
<tbody id="instructions" class="hidden">
<tr>
<td colspan="2">
<p>
If you're in your own sandbox or are a domain administrator:<br />
Right-click the High Fidelity Sandbox icon in your system tray <br />and click "Settings".<br />
In the "Scripts" section add a new Script URL, <br />playRecordingAC.js, and set # instances to 1 or more.<br />
Click "Save and restart".<br />
Now you can play recordings in the domain!
</p>
<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>
<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>
<script>
onBodyLoaded();
</script>
</body>
</html>