⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 optionpanetest.xml

📁 在流览器上仿CS界面的JAVASCRIPT脚本
💻 XML
字号:
<?xml version="1.0"?><!--	This mimics a notepad dialog using the option pane--><application>	<window caption="Option Pane Test" width="320" height="128" centered="true"/>	<resources>		<script><![CDATA[function OptionPaneTest() {	var win = application.getWindow();	win.setSize(320, 128)	var s = "The text in the C:\\document.txt file has changed.\n\nDo you want to save the changes?";	var op = new BiOptionPane(s, "warning", "yesnocancel", null, null, null);	win.add( op );	op.setLocation(0, 0);	op.setRight(0);	op.setBottom(0);}OptionPaneTest.main = function () { new OptionPaneTest; };		]]></script>	</resources></application>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -