Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64 User : User ( 0) PHP Version : 7.4.6 Disable Function : NONE Directory : C:/Program Files (x86)/Microsoft Office/Templates/1028/Behaviors11/ACTIONS/ |
<!-- _LocalBinding --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>檢查外掛程式</title> <meta name="DHTMLScriptName" content="檢查外掛程式(&P)"> <meta name="DialogResizable" content="true"> <meta name="DialogSize" content="500,200"> <style> button { width: 8em; } table { border: none; border-collapse: collapse } </style> <script type="text/JavaScript"> var L_NOURL_ErrorMessage = "請輸入 URL"; var L_NOOPTION_ErrorMessage = "請選擇選項"; </script> <script type="text/JavaScript" src="FPLib.js"></script> <script type="text/JavaScript" src="Strings.js"></script> <script type="text/JavaScript" src="ChkPlugn.js"></script> </head> <body onload="safeFocus(theForm.Plugin)"> <form id="theForm" name="theForm" onsubmit="Validate(); return false;"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="threedshadow" id="AutoNumber1" width="100%" height="100%"> <tr> <td colspan="7" nowrap> <label for="Plugin"> 若目前 Plug-in 是(<u>P</u>): </label> <select size="1" name="Plugin" accesskey="p" id="Plugin"> <option>Flash</option> <option>QuickTime</option> <option>RealPlayer</option> <option>Shockwave</option> <option selected>Windows Media Player</option> </select> <br> </td> </tr> <tr> <td> </td> <td nowrap> <input type="checkbox" name="GoToURL1" value="ON" id="GoToURL1" accesskey="g"> </td> <td nowrap> <label for="GoToURL1"> 移至 URL(<u>G</u>): </label> </td> <td width="100%" colspan="2" dir="ltr"> <input type="text" name="URL1" id="URL1" style="width: 100%" disabled="true" style="background-color: threedface"></td> <td> </td> <td> <button name="BrowseURL1" value="Browse..." onclick="PickURL(URL1);" disabled="true" accesskey="b"> 瀏覽(<u>B</u>)... </button> </td> </tr> <tr> <td colspan="7" nowrap> <br> 否則,針對所有其他外掛程式: <br> </td> </tr> <tr> <td> </td> <td> <input type="checkbox" name="GoToURL2" value="ON" accesskey="u" id="GoToURL2"> </td> <td nowrap> <label for="GoToURL2"> 移至 URL(<u>U</u>): </label> </td> <td width="100%" dir="ltr"> <input type="text" name="URL2" id="URL2" style="width: 100%" disabled="true" style="background-color: threedface"></td> <td> </td> <td colspan="2"> <button name="BrowseURL2" value="Browse..." onclick="PickURL(URL2);" disabled="true" accesskey="r"> 瀏覽(<u>R</u>)... </button> </td> </tr> <tr> <td height="80%"></td> </tr> <tr> <td colspan="7"> <hr> <table width="100%"> <tr> <td width="100%"> </td> <td> <button name="OK" value="OK" type="submit"> 確定 </button> </td> <td> </td> <td> <button name="Cancel" value="Cancel" onclick="CancelAction();"> 取消 </button> </td> </tr> </table> </td> </tr> </form> </table> </body> <script language="javascript" id="EventHandler"> theForm.GoToURL1.onclick = e_GoToURLonclick; theForm.GoToURL2.onclick = e_GoToURLonclick; //Click event for the go to URL check box function e_GoToURLonclick() { if (event.srcElement.name == "GoToURL1") { theForm.URL1.disabled = !(theForm.URL1.disabled); theForm.BrowseURL1.disabled = theForm.URL1.disabled; if (theForm.URL1.disabled == false) theForm.URL1.style.backgroundColor = "window"; else theForm.URL1.style.backgroundColor = "threedface"; } if (event.srcElement.name == "GoToURL2") { theForm.URL2.disabled = !(theForm.URL2.disabled); theForm.BrowseURL2.disabled = theForm.URL2.disabled; if (theForm.URL2.disabled == false) theForm.URL2.style.backgroundColor = "window"; else theForm.URL2.style.backgroundColor = "threedface"; } } function PickURL(eURL) { var url = FrontPage.ShowPickURLDialog(FrontPage.ActiveDocument.url, eURL.value); if (url != '') eURL.value = url; eURL.focus(); } </script> </html>