annotate WebContent/jscripts/tiny_mce/plugins/media/media.htm @ 5:0be9d53a6967

editor for annotations
author dwinter
date Tue, 13 Dec 2011 17:43:46 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
3 <head>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
4 <title>{#media_dlg.title}</title>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
6 <script type="text/javascript" src="js/media.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
7 <script type="text/javascript" src="../../utils/mctabs.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
8 <script type="text/javascript" src="../../utils/validate.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
9 <script type="text/javascript" src="../../utils/form_utils.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
10 <script type="text/javascript" src="../../utils/editable_selects.js"></script>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
11 <link href="css/media.css" rel="stylesheet" type="text/css" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
12 </head>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
13 <body style="display: none" role="application">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
14 <form onsubmit="Media.insert();return false;" action="#">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
15 <div class="tabs" role="presentation">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
16 <ul>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
17 <li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');Media.formToData();" onmousedown="return false;">{#media_dlg.general}</a></span></li>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
18 <li id="advanced_tab" aria-controls="advanced_panel"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');Media.formToData();" onmousedown="return false;">{#media_dlg.advanced}</a></span></li>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
19 <li id="source_tab" aria-controls="source_panel"><span><a href="javascript:mcTabs.displayTab('source_tab','source_panel');Media.formToData('source');" onmousedown="return false;">{#media_dlg.source}</a></span></li>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
20 </ul>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
21 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
22
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
23 <div class="panel_wrapper">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
24 <div id="general_panel" class="panel current">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
25 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
26 <legend>{#media_dlg.general}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
27
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
28 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
29 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
30 <td><label for="media_type">{#media_dlg.type}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
31 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
32 <select id="media_type"></select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
33 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
34 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
35 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
36 <td><label for="src">{#media_dlg.file}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
37 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
38 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
39 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
40 <td><input id="src" name="src" type="text" value="" class="mceFocus" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
41 <td id="filebrowsercontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
42 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
43 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
44 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
45 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
46 <tr id="linklistrow">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
47 <td><label for="linklist">{#media_dlg.list}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
48 <td id="linklistcontainer"><select id="linklist"><option value=""></option></select></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
49 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
50 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
51 <td><label for="width">{#media_dlg.size}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
52 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
53 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
54 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
55 <td><input type="text" id="width" name="width" value="" class="size" onchange="Media.formToData('width');" onfocus="Media.beforeResize();" /> x <input type="text" id="height" name="height" value="" class="size" onfocus="Media.beforeResize();" onchange="Media.formToData('height');" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
56 <td>&nbsp;&nbsp;<input id="constrain" type="checkbox" name="constrain" class="checkbox" checked="checked" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
57 <td><label id="constrainlabel" for="constrain">{#media_dlg.constrain_proportions}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
58 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
59 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
60 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
61 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
62 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
63 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
64
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
65 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
66 <legend>{#media_dlg.preview}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
67 <div id="prev"></div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
68 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
69 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
70
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
71 <div id="advanced_panel" class="panel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
72 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
73 <legend>{#media_dlg.advanced}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
74
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
75 <table role="presentation" border="0" cellpadding="4" cellspacing="0" width="100%">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
76 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
77 <td><label for="id">{#media_dlg.id}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
78 <td><input type="text" id="id" name="id" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
79 <td><label for="name">{#media_dlg.name}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
80 <td><input type="text" id="name" name="name" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
81 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
82
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
83 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
84 <td><label for="align">{#media_dlg.align}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
85 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
86 <select id="align" name="align" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
87 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
88 <option value="top">{#media_dlg.align_top}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
89 <option value="right">{#media_dlg.align_right}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
90 <option value="bottom">{#media_dlg.align_bottom}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
91 <option value="left">{#media_dlg.align_left}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
92 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
93 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
94
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
95 <td><label for="bgcolor">{#media_dlg.bgcolor}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
96 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
97 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
98 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
99 <td><input id="bgcolor" name="bgcolor" type="text" value="" size="9" onchange="updateColor('bgcolor_pick','bgcolor');Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
100 <td id="bgcolor_pickcontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
101 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
102 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
103 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
104 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
105
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
106 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
107 <td><label for="vspace">{#media_dlg.vspace}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
108 <td><input type="text" id="vspace" name="vspace" class="number" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
109 <td><label for="hspace">{#media_dlg.hspace}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
110 <td><input type="text" id="hspace" name="hspace" class="number" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
111 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
112 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
113 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
114
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
115 <fieldset id="video_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
116 <legend>{#media_dlg.html5_video_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
117
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
118 <table role="presentation">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
119 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
120 <td><label for="video_altsource1">{#media_dlg.altsource1}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
121 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
122 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
123 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
124 <td><input type="text" id="video_altsource1" name="video_altsource1" onchange="Media.formToData();" style="width: 240px" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
125 <td id="video_altsource1_filebrowser">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
126 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
127 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
128 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
129 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
130
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
131 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
132 <td><label for="video_altsource2">{#media_dlg.altsource2}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
133 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
134 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
135 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
136 <td><input type="text" id="video_altsource2" name="video_altsource2" onchange="Media.formToData();" style="width: 240px" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
137 <td id="video_altsource2_filebrowser">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
138 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
139 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
140 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
141 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
142
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
143 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
144 <td><label for="video_poster">{#media_dlg.poster}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
145 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
146 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
147 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
148 <td><input type="text" id="video_poster" name="video_poster" onchange="Media.formToData();" style="width: 240px" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
149 <td id="video_poster_filebrowser">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
150 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
151 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
152 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
153 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
154
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
155 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
156 <td><label for="video_preload">{#media_dlg.preload}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
157 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
158 <select id="video_preload" name="video_preload" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
159 <option value="none">{#media_dlg.preload_none}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
160 <option value="metadata">{#media_dlg.preload_metadata}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
161 <option value="auto">{#media_dlg.preload_auto}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
162 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
163 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
164 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
165 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
166
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
167 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
168 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
169 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
170 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
171 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
172 <td><input type="checkbox" class="checkbox" id="video_autoplay" name="video_autoplay" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
173 <td><label for="video_autoplay">{#media_dlg.play}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
174 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
175 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
176 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
177
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
178 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
179 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
180 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
181 <td><input type="checkbox" class="checkbox" id="video_muted" name="video_muted" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
182 <td><label for="video_muted">{#media_dlg.mute}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
183 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
184 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
185 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
186
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
187 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
188 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
189 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
190 <td><input type="checkbox" class="checkbox" id="video_loop" name="video_loop" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
191 <td><label for="video_loop">{#media_dlg.loop}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
192 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
193 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
194 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
195
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
196 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
197 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
198 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
199 <td><input type="checkbox" class="checkbox" id="video_controls" name="video_controls" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
200 <td><label for="video_controls">{#media_dlg.controls}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
201 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
202 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
203 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
204 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
205 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
206 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
207
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
208 <fieldset id="embeddedaudio_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
209 <legend>{#media_dlg.embedded_audio_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
210
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
211 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
212 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
213 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
214 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
215 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
216 <td><input type="checkbox" class="checkbox" id="embeddedaudio_autoplay" name="audio_autoplay" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
217 <td><label for="audio_autoplay">{#media_dlg.play}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
218 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
219 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
220 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
221
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
222 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
223 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
224 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
225 <td><input type="checkbox" class="checkbox" id="embeddedaudio_loop" name="audio_loop" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
226 <td><label for="audio_loop">{#media_dlg.loop}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
227 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
228 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
229 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
230
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
231 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
232 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
233 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
234 <td><input type="checkbox" class="checkbox" id="embeddedaudio_controls" name="audio_controls" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
235 <td><label for="audio_controls">{#media_dlg.controls}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
236 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
237 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
238 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
239 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
240 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
241 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
242
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
243 <fieldset id="audio_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
244 <legend>{#media_dlg.html5_audio_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
245
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
246 <table role="presentation">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
247 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
248 <td><label for="audio_altsource1">{#media_dlg.altsource1}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
249 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
250 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
251 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
252 <td><input type="text" id="audio_altsource1" name="audio_altsource1" onchange="Media.formToData();" style="width: 240px" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
253 <td id="audio_altsource1_filebrowser">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
254 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
255 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
256 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
257 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
258
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
259 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
260 <td><label for="audio_altsource2">{#media_dlg.altsource2}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
261 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
262 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
263 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
264 <td><input type="text" id="audio_altsource2" name="audio_altsource2" onchange="Media.formToData();" style="width: 240px" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
265 <td id="audio_altsource2_filebrowser">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
266 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
267 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
268 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
269 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
270
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
271 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
272 <td><label for="audio_preload">{#media_dlg.preload}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
273 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
274 <select id="audio_preload" name="audio_preload" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
275 <option value="none">{#media_dlg.preload_none}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
276 <option value="metadata">{#media_dlg.preload_metadata}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
277 <option value="auto">{#media_dlg.preload_auto}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
278 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
279 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
280 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
281 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
282
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
283 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
284 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
285 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
286 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
287 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
288 <td><input type="checkbox" class="checkbox" id="audio_autoplay" name="audio_autoplay" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
289 <td><label for="audio_autoplay">{#media_dlg.play}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
290 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
291 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
292 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
293
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
294 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
295 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
296 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
297 <td><input type="checkbox" class="checkbox" id="audio_loop" name="audio_loop" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
298 <td><label for="audio_loop">{#media_dlg.loop}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
299 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
300 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
301 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
302
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
303 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
304 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
305 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
306 <td><input type="checkbox" class="checkbox" id="audio_controls" name="audio_controls" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
307 <td><label for="audio_controls">{#media_dlg.controls}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
308 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
309 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
310 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
311 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
312 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
313 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
314
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
315 <fieldset id="flash_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
316 <legend>{#media_dlg.flash_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
317
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
318 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
319 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
320 <td><label for="flash_quality">{#media_dlg.quality}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
321 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
322 <select id="flash_quality" name="flash_quality" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
323 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
324 <option value="high">high</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
325 <option value="low">low</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
326 <option value="autolow">autolow</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
327 <option value="autohigh">autohigh</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
328 <option value="best">best</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
329 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
330 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
331
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
332 <td><label for="flash_scale">{#media_dlg.scale}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
333 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
334 <select id="flash_scale" name="flash_scale" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
335 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
336 <option value="showall">showall</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
337 <option value="noborder">noborder</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
338 <option value="exactfit">exactfit</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
339 <option value="noscale">noscale</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
340 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
341 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
342 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
343
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
344 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
345 <td><label for="flash_wmode">{#media_dlg.wmode}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
346 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
347 <select id="flash_wmode" name="flash_wmode" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
348 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
349 <option value="window">window</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
350 <option value="opaque">opaque</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
351 <option value="transparent">transparent</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
352 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
353 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
354
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
355 <td><label for="flash_salign">{#media_dlg.salign}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
356 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
357 <select id="flash_salign" name="flash_salign" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
358 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
359 <option value="l">{#media_dlg.align_left}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
360 <option value="t">{#media_dlg.align_top}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
361 <option value="r">{#media_dlg.align_right}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
362 <option value="b">{#media_dlg.align_bottom}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
363 <option value="tl">{#media_dlg.align_top_left}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
364 <option value="tr">{#media_dlg.align_top_right}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
365 <option value="bl">{#media_dlg.align_bottom_left}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
366 <option value="br">{#media_dlg.align_bottom_right}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
367 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
368 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
369 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
370
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
371 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
372 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
373 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
374 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
375 <td><input type="checkbox" class="checkbox" id="flash_play" name="flash_play" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
376 <td><label for="flash_play">{#media_dlg.play}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
377 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
378 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
379 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
380
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
381 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
382 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
383 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
384 <td><input type="checkbox" class="checkbox" id="flash_loop" name="flash_loop" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
385 <td><label for="flash_loop">{#media_dlg.loop}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
386 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
387 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
388 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
389 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
390
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
391 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
392 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
393 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
394 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
395 <td><input type="checkbox" class="checkbox" id="flash_menu" name="flash_menu" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
396 <td><label for="flash_menu">{#media_dlg.menu}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
397 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
398 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
399 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
400
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
401 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
402 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
403 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
404 <td><input type="checkbox" class="checkbox" id="flash_swliveconnect" name="flash_swliveconnect" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
405 <td><label for="flash_swliveconnect">{#media_dlg.liveconnect}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
406 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
407 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
408 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
409 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
410 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
411
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
412 <table role="presentation">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
413 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
414 <td><label for="flash_base">{#media_dlg.base}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
415 <td><input type="text" id="flash_base" name="flash_base" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
416 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
417
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
418 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
419 <td><label for="flash_flashvars">{#media_dlg.flashvars}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
420 <td><input type="text" id="flash_flashvars" name="flash_flashvars" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
421 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
422 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
423 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
424
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
425 <fieldset id="quicktime_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
426 <legend>{#media_dlg.qt_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
427
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
428 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
429 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
430 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
431 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
432 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
433 <td><input type="checkbox" class="checkbox" id="quicktime_loop" name="quicktime_loop" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
434 <td><label for="quicktime_loop">{#media_dlg.loop}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
435 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
436 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
437 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
438
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
439 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
440 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
441 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
442 <td><input type="checkbox" class="checkbox" id="quicktime_autoplay" name="quicktime_autoplay" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
443 <td><label for="quicktime_autoplay">{#media_dlg.play}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
444 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
445 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
446 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
447 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
448
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
449 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
450 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
451 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
452 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
453 <td><input type="checkbox" class="checkbox" id="quicktime_cache" name="quicktime_cache" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
454 <td><label for="quicktime_cache">{#media_dlg.cache}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
455 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
456 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
457 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
458
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
459 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
460 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
461 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
462 <td><input type="checkbox" class="checkbox" id="quicktime_controller" name="quicktime_controller" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
463 <td><label for="quicktime_controller">{#media_dlg.controller}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
464 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
465 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
466 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
467 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
468
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
469 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
470 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
471 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
472 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
473 <td><input type="checkbox" class="checkbox" id="quicktime_correction" name="quicktime_correction" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
474 <td><label for="quicktime_correction">{#media_dlg.correction}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
475 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
476 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
477 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
478
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
479 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
480 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
481 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
482 <td><input type="checkbox" class="checkbox" id="quicktime_enablejavascript" name="quicktime_enablejavascript" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
483 <td><label for="quicktime_enablejavascript">{#media_dlg.enablejavascript}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
484 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
485 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
486 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
487 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
488
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
489 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
490 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
491 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
492 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
493 <td><input type="checkbox" class="checkbox" id="quicktime_kioskmode" name="quicktime_kioskmode" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
494 <td><label for="quicktime_kioskmode">{#media_dlg.kioskmode}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
495 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
496 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
497 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
498
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
499 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
500 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
501 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
502 <td><input type="checkbox" class="checkbox" id="quicktime_autohref" name="quicktime_autohref" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
503 <td><label for="quicktime_autohref">{#media_dlg.autohref}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
504 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
505 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
506 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
507 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
508
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
509 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
510 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
511 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
512 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
513 <td><input type="checkbox" class="checkbox" id="quicktime_playeveryframe" name="quicktime_playeveryframe" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
514 <td><label for="quicktime_playeveryframe">{#media_dlg.playeveryframe}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
515 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
516 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
517 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
518
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
519 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
520 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
521 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
522 <td><input type="checkbox" class="checkbox" id="quicktime_targetcache" name="quicktime_targetcache" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
523 <td><label for="quicktime_targetcache">{#media_dlg.targetcache}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
524 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
525 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
526 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
527 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
528
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
529 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
530 <td><label for="quicktime_scale">{#media_dlg.scale}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
531 <td><select id="quicktime_scale" name="quicktime_scale" class="mceEditableSelect" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
532 <option value="">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
533 <option value="tofit">tofit</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
534 <option value="aspect">aspect</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
535 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
536 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
537
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
538 <td colspan="2">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
539 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
540
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
541 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
542 <td><label for="quicktime_starttime">{#media_dlg.starttime}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
543 <td><input type="text" id="quicktime_starttime" name="quicktime_starttime" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
544
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
545 <td><label for="quicktime_endtime">{#media_dlg.endtime}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
546 <td><input type="text" id="quicktime_endtime" name="quicktime_endtime" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
547 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
548
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
549 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
550 <td><label for="quicktime_target">{#media_dlg.target}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
551 <td><input type="text" id="quicktime_target" name="quicktime_target" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
552
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
553 <td><label for="quicktime_href">{#media_dlg.href}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
554 <td><input type="text" id="quicktime_href" name="quicktime_href" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
555 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
556
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
557 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
558 <td><label for="quicktime_qtsrcchokespeed">{#media_dlg.qtsrcchokespeed}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
559 <td><input type="text" id="quicktime_qtsrcchokespeed" name="quicktime_qtsrcchokespeed" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
560
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
561 <td><label for="quicktime_volume">{#media_dlg.volume}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
562 <td><input type="text" id="quicktime_volume" name="quicktime_volume" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
563 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
564
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
565 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
566 <td><label for="quicktime_qtsrc">{#media_dlg.qtsrc}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
567 <td colspan="4">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
568 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
569 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
570 <td><input type="text" id="quicktime_qtsrc" name="quicktime_qtsrc" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
571 <td id="qtsrcfilebrowsercontainer">&nbsp;</td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
572 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
573 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
574 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
575 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
576 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
577 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
578
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
579 <fieldset id="windowsmedia_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
580 <legend>{#media_dlg.wmp_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
581
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
582 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
583 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
584 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
585 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
586 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
587 <td><input type="checkbox" class="checkbox" id="windowsmedia_autostart" name="windowsmedia_autostart" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
588 <td><label for="windowsmedia_autostart">{#media_dlg.autostart}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
589 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
590 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
591 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
592
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
593 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
594 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
595 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
596 <td><input type="checkbox" class="checkbox" id="windowsmedia_enabled" name="windowsmedia_enabled" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
597 <td><label for="windowsmedia_enabled">{#media_dlg.enabled}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
598 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
599 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
600 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
601 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
602
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
603 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
604 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
605 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
606 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
607 <td><input type="checkbox" class="checkbox" id="windowsmedia_enablecontextmenu" name="windowsmedia_enablecontextmenu" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
608 <td><label for="windowsmedia_enablecontextmenu">{#media_dlg.menu}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
609 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
610 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
611 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
612
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
613 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
614 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
615 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
616 <td><input type="checkbox" class="checkbox" id="windowsmedia_fullscreen" name="windowsmedia_fullscreen" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
617 <td><label for="windowsmedia_fullscreen">{#media_dlg.fullscreen}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
618 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
619 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
620 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
621 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
622
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
623 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
624 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
625 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
626 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
627 <td><input type="checkbox" class="checkbox" id="windowsmedia_invokeurls" name="windowsmedia_invokeurls" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
628 <td><label for="windowsmedia_invokeurls">{#media_dlg.invokeurls}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
629 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
630 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
631 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
632
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
633 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
634 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
635 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
636 <td><input type="checkbox" class="checkbox" id="windowsmedia_mute" name="windowsmedia_mute" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
637 <td><label for="windowsmedia_mute">{#media_dlg.mute}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
638 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
639 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
640 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
641 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
642
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
643 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
644 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
645 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
646 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
647 <td><input type="checkbox" class="checkbox" id="windowsmedia_stretchtofit" name="windowsmedia_stretchtofit" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
648 <td><label for="windowsmedia_stretchtofit">{#media_dlg.stretchtofit}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
649 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
650 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
651 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
652
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
653 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
654 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
655 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
656 <td><input type="checkbox" class="checkbox" id="windowsmedia_windowlessvideo" name="windowsmedia_windowlessvideo" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
657 <td><label for="windowsmedia_windowlessvideo">{#media_dlg.windowlessvideo}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
658 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
659 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
660 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
661 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
662
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
663 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
664 <td><label for="windowsmedia_balance">{#media_dlg.balance}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
665 <td><input type="text" id="windowsmedia_balance" name="windowsmedia_balance" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
666
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
667 <td><label for="windowsmedia_baseurl">{#media_dlg.baseurl}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
668 <td><input type="text" id="windowsmedia_baseurl" name="windowsmedia_baseurl" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
669 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
670
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
671 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
672 <td><label for="windowsmedia_captioningid">{#media_dlg.captioningid}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
673 <td><input type="text" id="windowsmedia_captioningid" name="windowsmedia_captioningid" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
674
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
675 <td><label for="windowsmedia_currentmarker">{#media_dlg.currentmarker}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
676 <td><input type="text" id="windowsmedia_currentmarker" name="windowsmedia_currentmarker" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
677 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
678
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
679 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
680 <td><label for="windowsmedia_currentposition">{#media_dlg.currentposition}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
681 <td><input type="text" id="windowsmedia_currentposition" name="windowsmedia_currentposition" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
682
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
683 <td><label for="windowsmedia_defaultframe">{#media_dlg.defaultframe}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
684 <td><input type="text" id="windowsmedia_defaultframe" name="windowsmedia_defaultframe" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
685 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
686
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
687 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
688 <td><label for="windowsmedia_playcount">{#media_dlg.playcount}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
689 <td><input type="text" id="windowsmedia_playcount" name="windowsmedia_playcount" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
690
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
691 <td><label for="windowsmedia_rate">{#media_dlg.rate}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
692 <td><input type="text" id="windowsmedia_rate" name="windowsmedia_rate" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
693 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
694
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
695 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
696 <td><label for="windowsmedia_uimode">{#media_dlg.uimode}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
697 <td><input type="text" id="windowsmedia_uimode" name="windowsmedia_uimode" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
698
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
699 <td><label for="windowsmedia_volume">{#media_dlg.volume}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
700 <td><input type="text" id="windowsmedia_volume" name="windowsmedia_volume" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
701 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
702
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
703 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
704 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
705
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
706 <fieldset id="realmedia_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
707 <legend>{#media_dlg.rmp_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
708
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
709 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
710 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
711 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
712 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
713 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
714 <td><input type="checkbox" class="checkbox" id="realmedia_autostart" name="realmedia_autostart" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
715 <td><label for="realmedia_autostart">{#media_dlg.autostart}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
716 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
717 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
718 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
719
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
720 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
721 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
722 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
723 <td><input type="checkbox" class="checkbox" id="realmedia_loop" name="realmedia_loop" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
724 <td><label for="realmedia_loop">{#media_dlg.loop}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
725 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
726 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
727 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
728 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
729
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
730 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
731 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
732 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
733 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
734 <td><input type="checkbox" class="checkbox" id="realmedia_autogotourl" name="realmedia_autogotourl" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
735 <td><label for="realmedia_autogotourl">{#media_dlg.autogotourl}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
736 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
737 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
738 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
739
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
740 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
741 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
742 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
743 <td><input type="checkbox" class="checkbox" id="realmedia_center" name="realmedia_center" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
744 <td><label for="realmedia_center">{#media_dlg.center}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
745 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
746 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
747 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
748 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
749
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
750 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
751 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
752 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
753 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
754 <td><input type="checkbox" class="checkbox" id="realmedia_imagestatus" name="realmedia_imagestatus" checked="checked" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
755 <td><label for="realmedia_imagestatus">{#media_dlg.imagestatus}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
756 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
757 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
758 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
759
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
760 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
761 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
762 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
763 <td><input type="checkbox" class="checkbox" id="realmedia_maintainaspect" name="realmedia_maintainaspect" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
764 <td><label for="realmedia_maintainaspect">{#media_dlg.maintainaspect}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
765 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
766 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
767 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
768 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
769
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
770 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
771 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
772 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
773 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
774 <td><input type="checkbox" class="checkbox" id="realmedia_nojava" name="realmedia_nojava" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
775 <td><label for="realmedia_nojava">{#media_dlg.nojava}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
776 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
777 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
778 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
779
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
780 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
781 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
782 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
783 <td><input type="checkbox" class="checkbox" id="realmedia_prefetch" name="realmedia_prefetch" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
784 <td><label for="realmedia_prefetch">{#media_dlg.prefetch}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
785 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
786 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
787 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
788 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
789
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
790 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
791 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
792 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
793 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
794 <td><input type="checkbox" class="checkbox" id="realmedia_shuffle" name="realmedia_shuffle" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
795 <td><label for="realmedia_shuffle">{#media_dlg.shuffle}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
796 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
797 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
798 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
799
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
800 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
801 &nbsp;
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
802 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
803 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
804
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
805 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
806 <td><label for="realmedia_console">{#media_dlg.console}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
807 <td><input type="text" id="realmedia_console" name="realmedia_console" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
808
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
809 <td><label for="realmedia_controls">{#media_dlg.controls}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
810 <td><input type="text" id="realmedia_controls" name="realmedia_controls" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
811 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
812
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
813 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
814 <td><label for="realmedia_numloop">{#media_dlg.numloop}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
815 <td><input type="text" id="realmedia_numloop" name="realmedia_numloop" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
816
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
817 <td><label for="realmedia_scriptcallbacks">{#media_dlg.scriptcallbacks}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
818 <td><input type="text" id="realmedia_scriptcallbacks" name="realmedia_scriptcallbacks" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
819 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
820 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
821 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
822
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
823 <fieldset id="shockwave_options">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
824 <legend>{#media_dlg.shockwave_options}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
825
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
826 <table role="presentation" border="0" cellpadding="4" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
827 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
828 <td><label for="shockwave_swstretchstyle">{#media_dlg.swstretchstyle}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
829 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
830 <select id="shockwave_swstretchstyle" name="shockwave_swstretchstyle" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
831 <option value="none">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
832 <option value="meet">Meet</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
833 <option value="fill">Fill</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
834 <option value="stage">Stage</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
835 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
836 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
837
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
838 <td><label for="shockwave_swvolume">{#media_dlg.volume}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
839 <td><input type="text" id="shockwave_swvolume" name="shockwave_swvolume" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
840 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
841
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
842 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
843 <td><label for="shockwave_swstretchhalign">{#media_dlg.swstretchhalign}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
844 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
845 <select id="shockwave_swstretchhalign" name="shockwave_swstretchhalign" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
846 <option value="none">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
847 <option value="left">{#media_dlg.align_left}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
848 <option value="center">{#media_dlg.align_center}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
849 <option value="right">{#media_dlg.align_right}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
850 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
851 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
852
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
853 <td><label for="shockwave_swstretchvalign">{#media_dlg.swstretchvalign}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
854 <td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
855 <select id="shockwave_swstretchvalign" name="shockwave_swstretchvalign" onchange="Media.formToData();">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
856 <option value="none">{#not_set}</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
857 <option value="meet">Meet</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
858 <option value="fill">Fill</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
859 <option value="stage">Stage</option>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
860 </select>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
861 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
862 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
863
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
864 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
865 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
866 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
867 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
868 <td><input type="checkbox" class="checkbox" id="shockwave_autostart" name="shockwave_autostart" onchange="Media.formToData();" checked="checked" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
869 <td><label for="shockwave_autostart">{#media_dlg.autostart}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
870 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
871 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
872 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
873
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
874 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
875 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
876 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
877 <td><input type="checkbox" class="checkbox" id="shockwave_sound" name="shockwave_sound" onchange="Media.formToData();" checked="checked" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
878 <td><label for="shockwave_sound">{#media_dlg.sound}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
879 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
880 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
881 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
882 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
883
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
884
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
885 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
886 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
887 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
888 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
889 <td><input type="checkbox" class="checkbox" id="shockwave_swliveconnect" name="shockwave_swliveconnect" onchange="Media.formToData();" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
890 <td><label for="shockwave_swliveconnect">{#media_dlg.liveconnect}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
891 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
892 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
893 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
894
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
895 <td colspan="2">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
896 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
897 <tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
898 <td><input type="checkbox" class="checkbox" id="shockwave_progress" name="shockwave_progress" onchange="Media.formToData();" checked="checked" /></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
899 <td><label for="shockwave_progress">{#media_dlg.progress}</label></td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
900 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
901 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
902 </td>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
903 </tr>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
904 </table>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
905 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
906 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
907
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
908 <div id="source_panel" class="panel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
909 <fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
910 <legend>{#media_dlg.source}</legend>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
911 <textarea id="source" style="width: 99%; height: 390px"></textarea>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
912 </fieldset>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
913 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
914 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
915
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
916 <div class="mceActionPanel">
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
917 <input type="submit" id="insert" name="insert" value="{#insert}" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
918 <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
919 </div>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
920 </form>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
921 </body>
0be9d53a6967 editor for annotations
dwinter
parents:
diff changeset
922 </html>