12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Media Properties</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="robots" content="noindex, nofollow" />
- <script src="../../dialog/common/fck_dialog_common.js" type="text/javascript"></script>
- <script src="media.js" type="text/javascript"></script>
- <script type="text/javascript">
- document.write(FCKTools.GetStyleHtml(GetCommonDialogCss())) ;
- </script>
- <style type="text/css">
- body, td, input, textarea, select, label {
- font-family: Arial, Verdana, Geneva, helvetica, sans-serif; font-size: 11px;
- }
- </style>
- </head>
- <body scroll="no" style="overflow: hidden">
- <div id="divInfo">
- <table cellSpacing="1" cellPadding="1" width="100%" border="0">
- <tr>
- <td>
- <table cellSpacing="0" cellPadding="0" width="100%" border="0">
- <tr>
- <td width="100%"><span fckLang="DlgMediaURL">URL</span>
- </td>
- </tr>
- <tr>
- <td vAlign="top"><input id="txtUrl" style="width: 100%" type="text">
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td>
- <table cellSpacing="0" cellPadding="0" border="0">
- <tr>
- <td nowrap>
- <span fckLang="DlgMediaWidth">Width</span><br>
- <input id="txtWidth" onkeypress="return IsDigit(event);" type="text" size="3" value="425">
- </td>
- <td> </td>
- <td>
- <span fckLang="DlgMediaHeight">Height</span><br>
- <input id="txtHeight" onkeypress="return IsDigit(event);" type="text" size="3" value="344">
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td>
- <fieldset>
- <legend><span fcklang="DlgMediaURLTip">Tip:</span></legend>
- <ul>
- <li><span fckLang="DlgMediaURLTipContent1">Go to <a href="http://www.Media.com/" target="_blank">http://www.Media.com/</a>. Navigate within the site to find your video.</span></li>
- <li><span fckLang="DlgMediaURLTipContent2">Copy the URL of the video from your browser's address box and paste it in this dialog, the "URL" box.</span></li>
- <li><span fckLang="DlgMediaURLTipContent3">The copied URL should look like http://www.Media.com/watch?v=XXXXXXXXXXX....</span></li>
- </ul>
- </fieldset>
- </td>
- </tr>
- </table>
- </div>
- <div id="divPreview" style="display: none">
- <table cellSpacing="0" cellPadding="0" width="100%" height="100%">
- <tr>
- <td id="ePreviewCell" valign="top" class="MediaPreviewArea"><iframe src="Media_preview.html" frameborder="0" marginheight="0" marginwidth="0" style="width: 100%; height: 100%;"></iframe></td>
- </tr>
- </table>
- </div>
- </body>
- </html>
|