media.html 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Media Properties</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="robots" content="noindex, nofollow" />
  7. <script src="../../dialog/common/fck_dialog_common.js" type="text/javascript"></script>
  8. <script src="media.js" type="text/javascript"></script>
  9. <script type="text/javascript">
  10. document.write(FCKTools.GetStyleHtml(GetCommonDialogCss())) ;
  11. </script>
  12. <style type="text/css">
  13. body, td, input, textarea, select, label {
  14. font-family: Arial, Verdana, Geneva, helvetica, sans-serif; font-size: 11px;
  15. }
  16. </style>
  17. </head>
  18. <body scroll="no" style="overflow: hidden">
  19. <div id="divInfo">
  20. <table cellSpacing="1" cellPadding="1" width="100%" border="0">
  21. <tr>
  22. <td>
  23. <table cellSpacing="0" cellPadding="0" width="100%" border="0">
  24. <tr>
  25. <td width="100%"><span fckLang="DlgMediaURL">URL</span>
  26. </td>
  27. </tr>
  28. <tr>
  29. <td vAlign="top"><input id="txtUrl" style="width: 100%" type="text">
  30. </td>
  31. </tr>
  32. </table>
  33. </td>
  34. </tr>
  35. <tr>
  36. <td>
  37. <table cellSpacing="0" cellPadding="0" border="0">
  38. <tr>
  39. <td nowrap>
  40. <span fckLang="DlgMediaWidth">Width</span><br>
  41. <input id="txtWidth" onkeypress="return IsDigit(event);" type="text" size="3" value="425">
  42. </td>
  43. <td>&nbsp;</td>
  44. <td>
  45. <span fckLang="DlgMediaHeight">Height</span><br>
  46. <input id="txtHeight" onkeypress="return IsDigit(event);" type="text" size="3" value="344">
  47. </td>
  48. </tr>
  49. </table>
  50. </td>
  51. </tr>
  52. <tr>
  53. <td>
  54. <fieldset>
  55. <legend><span fcklang="DlgMediaURLTip">Tip:</span></legend>
  56. <ul>
  57. <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>
  58. <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>
  59. <li><span fckLang="DlgMediaURLTipContent3">The copied URL should look like http://www.Media.com/watch?v=XXXXXXXXXXX....</span></li>
  60. </ul>
  61. </fieldset>
  62. </td>
  63. </tr>
  64. </table>
  65. </div>
  66. <div id="divPreview" style="display: none">
  67. <table cellSpacing="0" cellPadding="0" width="100%" height="100%">
  68. <tr>
  69. <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>
  70. </tr>
  71. </table>
  72. </div>
  73. </body>
  74. </html>