author | Dan Fuhry <dan@enanocms.org> |
Sun, 01 Aug 2010 12:41:45 -0400 | |
changeset 1284 | 35380c89b5bf |
parent 1193 | e3b94bd055dc |
permissions | -rw-r--r-- |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
1 | 2 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
3 |
<head> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
4 |
<title>{#media_dlg.title}</title> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
5 |
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
6 |
<script type="text/javascript" src="js/media.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
7 |
<script type="text/javascript" src="../../utils/mctabs.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
8 |
<script type="text/javascript" src="../../utils/validate.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
9 |
<script type="text/javascript" src="../../utils/form_utils.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
10 |
<script type="text/javascript" src="../../utils/editable_selects.js"></script> |
1 | 11 |
<link href="css/media.css" rel="stylesheet" type="text/css" /> |
12 |
</head> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
13 |
<body style="display: none"> |
1 | 14 |
<form onsubmit="insertMedia();return false;" action="#"> |
15 |
<div class="tabs"> |
|
16 |
<ul> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
17 |
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');generatePreview();" onmousedown="return false;">{#media_dlg.general}</a></span></li> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
18 |
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#media_dlg.advanced}</a></span></li> |
1 | 19 |
</ul> |
20 |
</div> |
|
21 |
||
22 |
<div class="panel_wrapper"> |
|
23 |
<div id="general_panel" class="panel current"> |
|
24 |
<fieldset> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
25 |
<legend>{#media_dlg.general}</legend> |
1 | 26 |
|
27 |
<table border="0" cellpadding="4" cellspacing="0"> |
|
28 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
29 |
<td><label for="media_type">{#media_dlg.type}</label></td> |
1 | 30 |
<td> |
31 |
<select id="media_type" name="media_type" onchange="changedType(this.value);generatePreview();"> |
|
32 |
<option value="flash">Flash</option> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
33 |
<!-- <option value="flv">Flash video (FLV)</option> --> |
1 | 34 |
<option value="qt">Quicktime</option> |
543 | 35 |
<option value="shockwave">Shockwave</option> |
1 | 36 |
<option value="wmp">Windows Media</option> |
37 |
<option value="rmp">Real Media</option> |
|
38 |
</select> |
|
39 |
</td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
42 |
<td><label for="src">{#media_dlg.file}</label></td> |
1 | 43 |
<td> |
44 |
<table border="0" cellspacing="0" cellpadding="0"> |
|
45 |
<tr> |
|
543 | 46 |
<td><input id="src" name="src" type="text" value="" class="mceFocus" onchange="switchType(this.value);generatePreview();" /></td> |
1 | 47 |
<td id="filebrowsercontainer"> </td> |
48 |
</tr> |
|
49 |
</table> |
|
50 |
</td> |
|
51 |
</tr> |
|
52 |
<tr id="linklistrow"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
53 |
<td><label for="linklist">{#media_dlg.list}</label></td> |
1193 | 54 |
<td id="linklistcontainer"><select id="linklist"><option value=""></option></select></td> |
1 | 55 |
</tr> |
56 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
57 |
<td><label for="width">{#media_dlg.size}</label></td> |
1 | 58 |
<td> |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
59 |
<table border="0" cellpadding="0" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
60 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
61 |
<td><input type="text" id="width" name="width" value="" class="size" onchange="generatePreview('width');" /> x <input type="text" id="height" name="height" value="" class="size" onchange="generatePreview('height');" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
62 |
<td> <input id="constrain" type="checkbox" name="constrain" class="checkbox" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
63 |
<td><label id="constrainlabel" for="constrain">{#media_dlg.constrain_proportions}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
64 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
65 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
66 |
</td> |
1 | 67 |
</tr> |
68 |
</table> |
|
69 |
</fieldset> |
|
70 |
||
71 |
<fieldset> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
72 |
<legend>{#media_dlg.preview}</legend> |
1 | 73 |
<div id="prev"></div> |
74 |
</fieldset> |
|
75 |
</div> |
|
76 |
||
77 |
<div id="advanced_panel" class="panel"> |
|
78 |
<fieldset> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
79 |
<legend>{#media_dlg.advanced}</legend> |
1 | 80 |
|
81 |
<table border="0" cellpadding="4" cellspacing="0" width="100%"> |
|
82 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
83 |
<td><label for="id">{#media_dlg.id}</label></td> |
1 | 84 |
<td><input type="text" id="id" name="id" onchange="generatePreview();" /></td> |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
85 |
<td><label for="name">{#media_dlg.name}</label></td> |
1 | 86 |
<td><input type="text" id="name" name="name" onchange="generatePreview();" /></td> |
87 |
</tr> |
|
88 |
||
89 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
90 |
<td><label for="align">{#media_dlg.align}</label></td> |
1 | 91 |
<td> |
92 |
<select id="align" name="align" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
93 |
<option value="">{#not_set}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
94 |
<option value="top">{#media_dlg.align_top}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
95 |
<option value="right">{#media_dlg.align_right}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
96 |
<option value="bottom">{#media_dlg.align_bottom}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
97 |
<option value="left">{#media_dlg.align_left}</option> |
1 | 98 |
</select> |
99 |
</td> |
|
100 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
101 |
<td><label for="bgcolor">{#media_dlg.bgcolor}</label></td> |
1 | 102 |
<td> |
103 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
104 |
<tr> |
|
105 |
<td><input id="bgcolor" name="bgcolor" type="text" value="" size="9" onchange="updateColor('bgcolor_pick','bgcolor');generatePreview();" /></td> |
|
106 |
<td id="bgcolor_pickcontainer"> </td> |
|
107 |
</tr> |
|
108 |
</table> |
|
109 |
</td> |
|
110 |
</tr> |
|
111 |
||
112 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
113 |
<td><label for="vspace">{#media_dlg.vspace}</label></td> |
1 | 114 |
<td><input type="text" id="vspace" name="vspace" class="number" onchange="generatePreview();" /></td> |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
115 |
<td><label for="hspace">{#media_dlg.hspace}</label></td> |
1 | 116 |
<td><input type="text" id="hspace" name="hspace" class="number" onchange="generatePreview();" /></td> |
117 |
</tr> |
|
118 |
</table> |
|
119 |
</fieldset> |
|
120 |
||
121 |
<fieldset id="flash_options"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
122 |
<legend>{#media_dlg.flash_options}</legend> |
1 | 123 |
|
124 |
<table border="0" cellpadding="4" cellspacing="0"> |
|
125 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
126 |
<td><label for="flash_quality">{#media_dlg.quality}</label></td> |
1 | 127 |
<td> |
128 |
<select id="flash_quality" name="flash_quality" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
129 |
<option value="">{#not_set}</option> |
1 | 130 |
<option value="high">high</option> |
131 |
<option value="low">low</option> |
|
132 |
<option value="autolow">autolow</option> |
|
133 |
<option value="autohigh">autohigh</option> |
|
134 |
<option value="best">best</option> |
|
135 |
</select> |
|
136 |
</td> |
|
137 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
138 |
<td><label for="flash_scale">{#media_dlg.scale}</label></td> |
1 | 139 |
<td> |
140 |
<select id="flash_scale" name="flash_scale" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
141 |
<option value="">{#not_set}</option> |
1 | 142 |
<option value="showall">showall</option> |
143 |
<option value="noborder">noborder</option> |
|
144 |
<option value="exactfit">exactfit</option> |
|
543 | 145 |
<option value="noscale">noscale</option> |
1 | 146 |
</select> |
147 |
</td> |
|
148 |
</tr> |
|
149 |
||
150 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
151 |
<td><label for="flash_wmode">{#media_dlg.wmode}</label></td> |
1 | 152 |
<td> |
153 |
<select id="flash_wmode" name="flash_wmode" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
154 |
<option value="">{#not_set}</option> |
1 | 155 |
<option value="window">window</option> |
156 |
<option value="opaque">opaque</option> |
|
157 |
<option value="transparent">transparent</option> |
|
158 |
</select> |
|
159 |
</td> |
|
160 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
161 |
<td><label for="flash_salign">{#media_dlg.salign}</label></td> |
1 | 162 |
<td> |
163 |
<select id="flash_salign" name="flash_salign" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
164 |
<option value="">{#not_set}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
165 |
<option value="l">{#media_dlg.align_left}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
166 |
<option value="t">{#media_dlg.align_top}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
167 |
<option value="r">{#media_dlg.align_right}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
168 |
<option value="b">{#media_dlg.align_bottom}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
169 |
<option value="tl">{#media_dlg.align_top_left}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
170 |
<option value="tr">{#media_dlg.align_top_right}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
171 |
<option value="bl">{#media_dlg.align_bottom_left}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
172 |
<option value="br">{#media_dlg.align_bottom_right}</option> |
1 | 173 |
</select> |
174 |
</td> |
|
175 |
</tr> |
|
176 |
||
177 |
<tr> |
|
178 |
<td colspan="2"> |
|
179 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
180 |
<tr> |
|
181 |
<td><input type="checkbox" class="checkbox" id="flash_play" name="flash_play" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
182 |
<td><label for="flash_play">{#media_dlg.play}</label></td> |
1 | 183 |
</tr> |
184 |
</table> |
|
185 |
</td> |
|
186 |
||
187 |
<td colspan="2"> |
|
188 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
189 |
<tr> |
|
190 |
<td><input type="checkbox" class="checkbox" id="flash_loop" name="flash_loop" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
191 |
<td><label for="flash_loop">{#media_dlg.loop}</label></td> |
1 | 192 |
</tr> |
193 |
</table> |
|
194 |
</td> |
|
195 |
</tr> |
|
196 |
||
197 |
<tr> |
|
198 |
<td colspan="2"> |
|
199 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
200 |
<tr> |
|
201 |
<td><input type="checkbox" class="checkbox" id="flash_menu" name="flash_menu" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
202 |
<td><label for="flash_menu">{#media_dlg.menu}</label></td> |
1 | 203 |
</tr> |
204 |
</table> |
|
205 |
</td> |
|
206 |
||
207 |
<td colspan="2"> |
|
208 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
209 |
<tr> |
|
210 |
<td><input type="checkbox" class="checkbox" id="flash_swliveconnect" name="flash_swliveconnect" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
211 |
<td><label for="flash_swliveconnect">{#media_dlg.liveconnect}</label></td> |
1 | 212 |
</tr> |
213 |
</table> |
|
214 |
</td> |
|
215 |
</tr> |
|
216 |
</table> |
|
217 |
||
218 |
<table> |
|
219 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
220 |
<td><label for="flash_base">{#media_dlg.base}</label></td> |
1 | 221 |
<td><input type="text" id="flash_base" name="flash_base" onchange="generatePreview();" /></td> |
222 |
</tr> |
|
223 |
||
224 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
225 |
<td><label for="flash_flashvars">{#media_dlg.flashvars}</label></td> |
1 | 226 |
<td><input type="text" id="flash_flashvars" name="flash_flashvars" onchange="generatePreview();" /></td> |
227 |
</tr> |
|
228 |
</table> |
|
229 |
</fieldset> |
|
230 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
231 |
<fieldset id="flv_options"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
232 |
<legend>{#media_dlg.flv_options}</legend> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
233 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
234 |
<table border="0" cellpadding="4" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
235 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
236 |
<td><label for="flv_scalemode">{#media_dlg.flv_scalemode}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
237 |
<td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
238 |
<select id="flv_scalemode" name="flv_scalemode" onchange="generatePreview();"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
239 |
<option value="">{#not_set}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
240 |
<option value="none">none</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
241 |
<option value="double">double</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
242 |
<option value="full">full</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
243 |
</select> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
244 |
</td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
245 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
246 |
<td><label for="flv_buffer">{#media_dlg.flv_buffer}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
247 |
<td><input type="text" id="flv_buffer" name="flv_buffer" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
248 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
249 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
250 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
251 |
<td><label for="flv_startimage">{#media_dlg.flv_startimage}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
252 |
<td><input type="text" id="flv_startimage" name="flv_startimage" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
253 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
254 |
<td><label for="flv_starttime">{#media_dlg.flv_starttime}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
255 |
<td><input type="text" id="flv_starttime" name="flv_starttime" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
256 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
257 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
258 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
259 |
<td><label for="flv_defaultvolume">{#media_dlg.flv_defaultvolume}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
260 |
<td><input type="text" id="flv_defaultvolume" name="flv_defaultvolume" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
261 |
|
1193 | 262 |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
263 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
264 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
265 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
266 |
<td colspan="2"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
267 |
<table border="0" cellpadding="0" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
268 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
269 |
<td><input type="checkbox" class="checkbox" id="flv_hiddengui" name="flv_hiddengui" checked="checked" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
270 |
<td><label for="flv_hiddengui">{#media_dlg.flv_hiddengui}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
271 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
272 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
273 |
</td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
274 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
275 |
<td colspan="2"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
276 |
<table border="0" cellpadding="0" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
277 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
278 |
<td><input type="checkbox" class="checkbox" id="flv_autostart" name="flv_autostart" checked="checked" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
279 |
<td><label for="flv_autostart">{#media_dlg.flv_autostart}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
280 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
281 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
282 |
</td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
283 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
284 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
285 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
286 |
<td colspan="2"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
287 |
<table border="0" cellpadding="0" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
288 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
289 |
<td><input type="checkbox" class="checkbox" id="flv_loop" name="flv_loop" checked="checked" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
290 |
<td><label for="flv_loop">{#media_dlg.flv_loop}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
291 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
292 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
293 |
</td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
294 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
295 |
<td colspan="2"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
296 |
<table border="0" cellpadding="0" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
297 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
298 |
<td><input type="checkbox" class="checkbox" id="flv_showscalemodes" name="flv_showscalemodes" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
299 |
<td><label for="flv_showscalemodes">{#media_dlg.flv_showscalemodes}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
300 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
301 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
302 |
</td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
303 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
304 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
305 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
306 |
<td colspan="2"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
307 |
<table border="0" cellpadding="0" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
308 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
309 |
<td><input type="checkbox" class="checkbox" id="flv_smoothvideo" name="flash_flv_flv_smoothvideosmoothvideo" checked="checked" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
310 |
<td><label for="flv_smoothvideo">{#media_dlg.flv_smoothvideo}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
311 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
312 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
313 |
</td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
314 |
|
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
315 |
<td colspan="2"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
316 |
<table border="0" cellpadding="0" cellspacing="0"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
317 |
<tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
318 |
<td><input type="checkbox" class="checkbox" id="flv_jscallback" name="flv_jscallback" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
319 |
<td><label for="flv_jscallback">{#media_dlg.flv_jscallback}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
320 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
321 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
322 |
</td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
323 |
</tr> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
324 |
</table> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
325 |
</fieldset> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
326 |
|
1 | 327 |
<fieldset id="qt_options"> |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
328 |
<legend>{#media_dlg.qt_options}</legend> |
1 | 329 |
|
330 |
<table border="0" cellpadding="4" cellspacing="0"> |
|
331 |
<tr> |
|
332 |
<td colspan="2"> |
|
333 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
334 |
<tr> |
|
335 |
<td><input type="checkbox" class="checkbox" id="qt_loop" name="qt_loop" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
336 |
<td><label for="qt_loop">{#media_dlg.loop}</label></td> |
1 | 337 |
</tr> |
338 |
</table> |
|
339 |
</td> |
|
340 |
||
341 |
<td colspan="2"> |
|
342 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
343 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
344 |
<td><input type="checkbox" class="checkbox" id="qt_autoplay" name="qt_autoplay" checked="checked" onchange="generatePreview();" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
345 |
<td><label for="qt_autoplay">{#media_dlg.play}</label></td> |
1 | 346 |
</tr> |
347 |
</table> |
|
348 |
</td> |
|
349 |
</tr> |
|
350 |
||
351 |
<tr> |
|
352 |
<td colspan="2"> |
|
353 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
354 |
<tr> |
|
355 |
<td><input type="checkbox" class="checkbox" id="qt_cache" name="qt_cache" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
356 |
<td><label for="qt_cache">{#media_dlg.cache}</label></td> |
1 | 357 |
</tr> |
358 |
</table> |
|
359 |
</td> |
|
360 |
||
361 |
<td colspan="2"> |
|
362 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
363 |
<tr> |
|
364 |
<td><input type="checkbox" class="checkbox" id="qt_controller" name="qt_controller" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
365 |
<td><label for="qt_controller">{#media_dlg.controller}</label></td> |
1 | 366 |
</tr> |
367 |
</table> |
|
368 |
</td> |
|
369 |
</tr> |
|
370 |
||
371 |
<tr> |
|
372 |
<td colspan="2"> |
|
373 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
374 |
<tr> |
|
375 |
<td><input type="checkbox" class="checkbox" id="qt_correction" name="qt_correction" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
376 |
<td><label for="qt_correction">{#media_dlg.correction}</label></td> |
1 | 377 |
</tr> |
378 |
</table> |
|
379 |
</td> |
|
380 |
||
381 |
<td colspan="2"> |
|
382 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
383 |
<tr> |
|
384 |
<td><input type="checkbox" class="checkbox" id="qt_enablejavascript" name="qt_enablejavascript" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
385 |
<td><label for="qt_enablejavascript">{#media_dlg.enablejavascript}</label></td> |
1 | 386 |
</tr> |
387 |
</table> |
|
388 |
</td> |
|
389 |
</tr> |
|
390 |
||
391 |
<tr> |
|
392 |
<td colspan="2"> |
|
393 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
394 |
<tr> |
|
395 |
<td><input type="checkbox" class="checkbox" id="qt_kioskmode" name="qt_kioskmode" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
396 |
<td><label for="qt_kioskmode">{#media_dlg.kioskmode}</label></td> |
1 | 397 |
</tr> |
398 |
</table> |
|
399 |
</td> |
|
400 |
||
401 |
<td colspan="2"> |
|
402 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
403 |
<tr> |
|
404 |
<td><input type="checkbox" class="checkbox" id="qt_autohref" name="qt_autohref" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
405 |
<td><label for="qt_autohref">{#media_dlg.autohref}</label></td> |
1 | 406 |
</tr> |
407 |
</table> |
|
408 |
</td> |
|
409 |
</tr> |
|
410 |
||
411 |
<tr> |
|
412 |
<td colspan="2"> |
|
413 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
414 |
<tr> |
|
415 |
<td><input type="checkbox" class="checkbox" id="qt_playeveryframe" name="qt_playeveryframe" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
416 |
<td><label for="qt_playeveryframe">{#media_dlg.playeveryframe}</label></td> |
1 | 417 |
</tr> |
418 |
</table> |
|
419 |
</td> |
|
420 |
||
421 |
<td colspan="2"> |
|
422 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
423 |
<tr> |
|
424 |
<td><input type="checkbox" class="checkbox" id="qt_targetcache" name="qt_targetcache" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
425 |
<td><label for="qt_targetcache">{#media_dlg.targetcache}</label></td> |
1 | 426 |
</tr> |
427 |
</table> |
|
428 |
</td> |
|
429 |
</tr> |
|
430 |
||
431 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
432 |
<td><label for="qt_scale">{#media_dlg.scale}</label></td> |
1 | 433 |
<td><select id="qt_scale" name="qt_scale" class="mceEditableSelect" onchange="generatePreview();"> |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
434 |
<option value="">{#not_set}</option> |
1 | 435 |
<option value="tofit">tofit</option> |
436 |
<option value="aspect">aspect</option> |
|
437 |
</select> |
|
438 |
</td> |
|
439 |
||
440 |
<td colspan="2"> </td> |
|
441 |
</tr> |
|
442 |
||
443 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
444 |
<td><label for="qt_starttime">{#media_dlg.starttime}</label></td> |
1 | 445 |
<td><input type="text" id="qt_starttime" name="qt_starttime" onchange="generatePreview();" /></td> |
446 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
447 |
<td><label for="qt_endtime">{#media_dlg.endtime}</label></td> |
1 | 448 |
<td><input type="text" id="qt_endtime" name="qt_endtime" onchange="generatePreview();" /></td> |
449 |
</tr> |
|
450 |
||
451 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
452 |
<td><label for="qt_target">{#media_dlg.target}</label></td> |
1 | 453 |
<td><input type="text" id="qt_target" name="qt_target" onchange="generatePreview();" /></td> |
454 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
455 |
<td><label for="qt_href">{#media_dlg.href}</label></td> |
1 | 456 |
<td><input type="text" id="qt_href" name="qt_href" onchange="generatePreview();" /></td> |
457 |
</tr> |
|
458 |
||
459 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
460 |
<td><label for="qt_qtsrcchokespeed">{#media_dlg.qtsrcchokespeed}</label></td> |
1 | 461 |
<td><input type="text" id="qt_qtsrcchokespeed" name="qt_qtsrcchokespeed" onchange="generatePreview();" /></td> |
462 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
463 |
<td><label for="qt_volume">{#media_dlg.volume}</label></td> |
1 | 464 |
<td><input type="text" id="qt_volume" name="qt_volume" onchange="generatePreview();" /></td> |
465 |
</tr> |
|
466 |
||
467 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
468 |
<td><label for="qt_qtsrc">{#media_dlg.qtsrc}</label></td> |
1 | 469 |
<td colspan="4"> |
470 |
<table border="0" cellspacing="0" cellpadding="0"> |
|
471 |
<tr> |
|
472 |
<td><input type="text" id="qt_qtsrc" name="qt_qtsrc" onchange="generatePreview();" /></td> |
|
473 |
<td id="qtsrcfilebrowsercontainer"> </td> |
|
474 |
</tr> |
|
475 |
</table> |
|
476 |
</td> |
|
477 |
</tr> |
|
478 |
</table> |
|
479 |
</fieldset> |
|
480 |
||
481 |
<fieldset id="wmp_options"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
482 |
<legend>{#media_dlg.wmp_options}</legend> |
1 | 483 |
|
484 |
<table border="0" cellpadding="4" cellspacing="0"> |
|
485 |
<tr> |
|
486 |
<td colspan="2"> |
|
487 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
488 |
<tr> |
|
489 |
<td><input type="checkbox" class="checkbox" id="wmp_autostart" name="wmp_autostart" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
490 |
<td><label for="wmp_autostart">{#media_dlg.autostart}</label></td> |
1 | 491 |
</tr> |
492 |
</table> |
|
493 |
</td> |
|
494 |
||
495 |
<td colspan="2"> |
|
496 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
497 |
<tr> |
|
498 |
<td><input type="checkbox" class="checkbox" id="wmp_enabled" name="wmp_enabled" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
499 |
<td><label for="wmp_enabled">{#media_dlg.enabled}</label></td> |
1 | 500 |
</tr> |
501 |
</table> |
|
502 |
</td> |
|
503 |
</tr> |
|
504 |
||
505 |
<tr> |
|
506 |
<td colspan="2"> |
|
507 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
508 |
<tr> |
|
509 |
<td><input type="checkbox" class="checkbox" id="wmp_enablecontextmenu" name="wmp_enablecontextmenu" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
510 |
<td><label for="wmp_enablecontextmenu">{#media_dlg.menu}</label></td> |
1 | 511 |
</tr> |
512 |
</table> |
|
513 |
</td> |
|
514 |
||
515 |
<td colspan="2"> |
|
516 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
517 |
<tr> |
|
518 |
<td><input type="checkbox" class="checkbox" id="wmp_fullscreen" name="wmp_fullscreen" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
519 |
<td><label for="wmp_fullscreen">{#media_dlg.fullscreen}</label></td> |
1 | 520 |
</tr> |
521 |
</table> |
|
522 |
</td> |
|
523 |
</tr> |
|
524 |
||
525 |
<tr> |
|
526 |
<td colspan="2"> |
|
527 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
528 |
<tr> |
|
529 |
<td><input type="checkbox" class="checkbox" id="wmp_invokeurls" name="wmp_invokeurls" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
530 |
<td><label for="wmp_invokeurls">{#media_dlg.invokeurls}</label></td> |
1 | 531 |
</tr> |
532 |
</table> |
|
533 |
</td> |
|
534 |
||
535 |
<td colspan="2"> |
|
536 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
537 |
<tr> |
|
538 |
<td><input type="checkbox" class="checkbox" id="wmp_mute" name="wmp_mute" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
539 |
<td><label for="wmp_mute">{#media_dlg.mute}</label></td> |
1 | 540 |
</tr> |
541 |
</table> |
|
542 |
</td> |
|
543 |
</tr> |
|
544 |
||
545 |
<tr> |
|
546 |
<td colspan="2"> |
|
547 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
548 |
<tr> |
|
549 |
<td><input type="checkbox" class="checkbox" id="wmp_stretchtofit" name="wmp_stretchtofit" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
550 |
<td><label for="wmp_stretchtofit">{#media_dlg.stretchtofit}</label></td> |
1 | 551 |
</tr> |
552 |
</table> |
|
553 |
</td> |
|
554 |
||
555 |
<td colspan="2"> |
|
556 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
557 |
<tr> |
|
558 |
<td><input type="checkbox" class="checkbox" id="wmp_windowlessvideo" name="wmp_windowlessvideo" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
559 |
<td><label for="wmp_windowlessvideo">{#media_dlg.windowlessvideo}</label></td> |
1 | 560 |
</tr> |
561 |
</table> |
|
562 |
</td> |
|
563 |
</tr> |
|
564 |
||
565 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
566 |
<td><label for="wmp_balance">{#media_dlg.balance}</label></td> |
1 | 567 |
<td><input type="text" id="wmp_balance" name="wmp_balance" onchange="generatePreview();" /></td> |
568 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
569 |
<td><label for="wmp_baseurl">{#media_dlg.baseurl}</label></td> |
1 | 570 |
<td><input type="text" id="wmp_baseurl" name="wmp_baseurl" onchange="generatePreview();" /></td> |
571 |
</tr> |
|
572 |
||
573 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
574 |
<td><label for="wmp_captioningid">{#media_dlg.captioningid}</label></td> |
1 | 575 |
<td><input type="text" id="wmp_captioningid" name="wmp_captioningid" onchange="generatePreview();" /></td> |
576 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
577 |
<td><label for="wmp_currentmarker">{#media_dlg.currentmarker}</label></td> |
1 | 578 |
<td><input type="text" id="wmp_currentmarker" name="wmp_currentmarker" onchange="generatePreview();" /></td> |
579 |
</tr> |
|
580 |
||
581 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
582 |
<td><label for="wmp_currentposition">{#media_dlg.currentposition}</label></td> |
1 | 583 |
<td><input type="text" id="wmp_currentposition" name="wmp_currentposition" onchange="generatePreview();" /></td> |
584 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
585 |
<td><label for="wmp_defaultframe">{#media_dlg.defaultframe}</label></td> |
1 | 586 |
<td><input type="text" id="wmp_defaultframe" name="wmp_defaultframe" onchange="generatePreview();" /></td> |
587 |
</tr> |
|
588 |
||
589 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
590 |
<td><label for="wmp_playcount">{#media_dlg.playcount}</label></td> |
1 | 591 |
<td><input type="text" id="wmp_playcount" name="wmp_playcount" onchange="generatePreview();" /></td> |
592 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
593 |
<td><label for="wmp_rate">{#media_dlg.rate}</label></td> |
1 | 594 |
<td><input type="text" id="wmp_rate" name="wmp_rate" onchange="generatePreview();" /></td> |
595 |
</tr> |
|
596 |
||
597 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
598 |
<td><label for="wmp_uimode">{#media_dlg.uimode}</label></td> |
1 | 599 |
<td><input type="text" id="wmp_uimode" name="wmp_uimode" onchange="generatePreview();" /></td> |
600 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
601 |
<td><label for="wmp_volume">{#media_dlg.volume}</label></td> |
1 | 602 |
<td><input type="text" id="wmp_volume" name="wmp_volume" onchange="generatePreview();" /></td> |
603 |
</tr> |
|
604 |
||
605 |
</table> |
|
606 |
</fieldset> |
|
607 |
||
608 |
<fieldset id="rmp_options"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
609 |
<legend>{#media_dlg.rmp_options}</legend> |
1 | 610 |
|
611 |
<table border="0" cellpadding="4" cellspacing="0"> |
|
612 |
<tr> |
|
613 |
<td colspan="2"> |
|
614 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
615 |
<tr> |
|
616 |
<td><input type="checkbox" class="checkbox" id="rmp_autostart" name="rmp_autostart" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
617 |
<td><label for="rmp_autostart">{#media_dlg.autostart}</label></td> |
1 | 618 |
</tr> |
619 |
</table> |
|
620 |
</td> |
|
621 |
||
622 |
<td colspan="2"> |
|
623 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
624 |
<tr> |
|
625 |
<td><input type="checkbox" class="checkbox" id="rmp_loop" name="rmp_loop" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
626 |
<td><label for="rmp_loop">{#media_dlg.loop}</label></td> |
1 | 627 |
</tr> |
628 |
</table> |
|
629 |
</td> |
|
630 |
</tr> |
|
631 |
||
632 |
<tr> |
|
633 |
<td colspan="2"> |
|
634 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
635 |
<tr> |
|
636 |
<td><input type="checkbox" class="checkbox" id="rmp_autogotourl" name="rmp_autogotourl" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
637 |
<td><label for="rmp_autogotourl">{#media_dlg.autogotourl}</label></td> |
1 | 638 |
</tr> |
639 |
</table> |
|
640 |
</td> |
|
641 |
||
642 |
<td colspan="2"> |
|
643 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
644 |
<tr> |
|
645 |
<td><input type="checkbox" class="checkbox" id="rmp_center" name="rmp_center" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
646 |
<td><label for="rmp_center">{#media_dlg.center}</label></td> |
1 | 647 |
</tr> |
648 |
</table> |
|
649 |
</td> |
|
650 |
</tr> |
|
651 |
||
652 |
<tr> |
|
653 |
<td colspan="2"> |
|
654 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
655 |
<tr> |
|
656 |
<td><input type="checkbox" class="checkbox" id="rmp_imagestatus" name="rmp_imagestatus" checked="checked" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
657 |
<td><label for="rmp_imagestatus">{#media_dlg.imagestatus}</label></td> |
1 | 658 |
</tr> |
659 |
</table> |
|
660 |
</td> |
|
661 |
||
662 |
<td colspan="2"> |
|
663 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
664 |
<tr> |
|
665 |
<td><input type="checkbox" class="checkbox" id="rmp_maintainaspect" name="rmp_maintainaspect" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
666 |
<td><label for="rmp_maintainaspect">{#media_dlg.maintainaspect}</label></td> |
1 | 667 |
</tr> |
668 |
</table> |
|
669 |
</td> |
|
670 |
</tr> |
|
671 |
||
672 |
<tr> |
|
673 |
<td colspan="2"> |
|
674 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
675 |
<tr> |
|
676 |
<td><input type="checkbox" class="checkbox" id="rmp_nojava" name="rmp_nojava" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
677 |
<td><label for="rmp_nojava">{#media_dlg.nojava}</label></td> |
1 | 678 |
</tr> |
679 |
</table> |
|
680 |
</td> |
|
681 |
||
682 |
<td colspan="2"> |
|
683 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
684 |
<tr> |
|
685 |
<td><input type="checkbox" class="checkbox" id="rmp_prefetch" name="rmp_prefetch" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
686 |
<td><label for="rmp_prefetch">{#media_dlg.prefetch}</label></td> |
1 | 687 |
</tr> |
688 |
</table> |
|
689 |
</td> |
|
690 |
</tr> |
|
691 |
||
692 |
<tr> |
|
693 |
<td colspan="2"> |
|
694 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
695 |
<tr> |
|
696 |
<td><input type="checkbox" class="checkbox" id="rmp_shuffle" name="rmp_shuffle" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
697 |
<td><label for="rmp_shuffle">{#media_dlg.shuffle}</label></td> |
1 | 698 |
</tr> |
699 |
</table> |
|
700 |
</td> |
|
701 |
||
702 |
<td colspan="2"> |
|
703 |
|
|
704 |
</td> |
|
705 |
</tr> |
|
706 |
||
707 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
708 |
<td><label for="rmp_console">{#media_dlg.console}</label></td> |
1 | 709 |
<td><input type="text" id="rmp_console" name="rmp_console" onchange="generatePreview();" /></td> |
710 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
711 |
<td><label for="rmp_controls">{#media_dlg.controls}</label></td> |
1 | 712 |
<td><input type="text" id="rmp_controls" name="rmp_controls" onchange="generatePreview();" /></td> |
713 |
</tr> |
|
714 |
||
715 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
716 |
<td><label for="rmp_numloop">{#media_dlg.numloop}</label></td> |
1 | 717 |
<td><input type="text" id="rmp_numloop" name="rmp_numloop" onchange="generatePreview();" /></td> |
718 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
719 |
<td><label for="rmp_scriptcallbacks">{#media_dlg.scriptcallbacks}</label></td> |
1 | 720 |
<td><input type="text" id="rmp_scriptcallbacks" name="rmp_scriptcallbacks" onchange="generatePreview();" /></td> |
721 |
</tr> |
|
722 |
</table> |
|
723 |
</fieldset> |
|
724 |
||
725 |
<fieldset id="shockwave_options"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
726 |
<legend>{#media_dlg.shockwave_options}</legend> |
1 | 727 |
|
728 |
<table border="0" cellpadding="4" cellspacing="0"> |
|
729 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
730 |
<td><label for="shockwave_swstretchstyle">{#media_dlg.swstretchstyle}</label></td> |
1 | 731 |
<td> |
732 |
<select id="shockwave_swstretchstyle" name="shockwave_swstretchstyle" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
733 |
<option value="none">{#not_set}</option> |
1 | 734 |
<option value="meet">Meet</option> |
735 |
<option value="fill">Fill</option> |
|
736 |
<option value="stage">Stage</option> |
|
737 |
</select> |
|
738 |
</td> |
|
739 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
740 |
<td><label for="shockwave_swvolume">{#media_dlg.volume}</label></td> |
1 | 741 |
<td><input type="text" id="shockwave_swvolume" name="shockwave_swvolume" onchange="generatePreview();" /></td> |
742 |
</tr> |
|
743 |
||
744 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
745 |
<td><label for="shockwave_swstretchhalign">{#media_dlg.swstretchhalign}</label></td> |
1 | 746 |
<td> |
747 |
<select id="shockwave_swstretchhalign" name="shockwave_swstretchhalign" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
748 |
<option value="none">{#not_set}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
749 |
<option value="left">{#media_dlg.align_left}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
750 |
<option value="center">{#media_dlg.align_center}</option> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
751 |
<option value="right">{#media_dlg.align_right}</option> |
1 | 752 |
</select> |
753 |
</td> |
|
754 |
||
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
755 |
<td><label for="shockwave_swstretchvalign">{#media_dlg.swstretchvalign}</label></td> |
1 | 756 |
<td> |
757 |
<select id="shockwave_swstretchvalign" name="shockwave_swstretchvalign" onchange="generatePreview();"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
758 |
<option value="none">{#not_set}</option> |
1 | 759 |
<option value="meet">Meet</option> |
760 |
<option value="fill">Fill</option> |
|
761 |
<option value="stage">Stage</option> |
|
762 |
</select> |
|
763 |
</td> |
|
764 |
</tr> |
|
765 |
||
766 |
<tr> |
|
767 |
<td colspan="2"> |
|
768 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
769 |
<tr> |
|
770 |
<td><input type="checkbox" class="checkbox" id="shockwave_autostart" name="shockwave_autostart" onchange="generatePreview();" checked="checked" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
771 |
<td><label for="shockwave_autostart">{#media_dlg.autostart}</label></td> |
1 | 772 |
</tr> |
773 |
</table> |
|
774 |
</td> |
|
775 |
||
776 |
<td colspan="2"> |
|
777 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
778 |
<tr> |
|
779 |
<td><input type="checkbox" class="checkbox" id="shockwave_sound" name="shockwave_sound" onchange="generatePreview();" checked="checked" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
780 |
<td><label for="shockwave_sound">{#media_dlg.sound}</label></td> |
1 | 781 |
</tr> |
782 |
</table> |
|
783 |
</td> |
|
784 |
</tr> |
|
785 |
||
786 |
||
787 |
<tr> |
|
788 |
<td colspan="2"> |
|
789 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
790 |
<tr> |
|
791 |
<td><input type="checkbox" class="checkbox" id="shockwave_swliveconnect" name="shockwave_swliveconnect" onchange="generatePreview();" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
792 |
<td><label for="shockwave_swliveconnect">{#media_dlg.liveconnect}</label></td> |
1 | 793 |
</tr> |
794 |
</table> |
|
795 |
</td> |
|
796 |
||
797 |
<td colspan="2"> |
|
798 |
<table border="0" cellpadding="0" cellspacing="0"> |
|
799 |
<tr> |
|
800 |
<td><input type="checkbox" class="checkbox" id="shockwave_progress" name="shockwave_progress" onchange="generatePreview();" checked="checked" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
801 |
<td><label for="shockwave_progress">{#media_dlg.progress}</label></td> |
1 | 802 |
</tr> |
803 |
</table> |
|
804 |
</td> |
|
805 |
</tr> |
|
806 |
</table> |
|
807 |
</fieldset> |
|
808 |
</div> |
|
809 |
</div> |
|
810 |
||
811 |
<div class="mceActionPanel"> |
|
812 |
<div style="float: left"> |
|
543 | 813 |
<input type="submit" id="insert" name="insert" value="{#insert}" /> |
1 | 814 |
</div> |
815 |
||
816 |
<div style="float: right"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
817 |
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
1 | 818 |
</div> |
819 |
</div> |
|
820 |
</form> |
|
821 |
</body> |
|
822 |
</html> |