亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? asdoc.js

?? Yahoo!search API. 用于搜索引擎接口
?? JS
字號:
var ECLIPSE_FRAME_NAME = "ContentViewFrame";
var eclipseBuild = false;
var liveDocsBaseUrl = "http://livedocs.macromedia.com/flex/2/langref/";

function findObject(objId) {
	if (document.getElementById)
		return document.getElementById(objId);

	if (document.all)
		return document.all[objId];
}

function isEclipse() {
	return eclipseBuild;
//	return (window.name == ECLIPSE_FRAME_NAME) || (parent.name == ECLIPSE_FRAME_NAME) || (parent.parent.name == ECLIPSE_FRAME_NAME);
}

function configPage() {
	if (isEclipse()) {
		if (window.name != "classFrame")
		{
			var localRef = window.location.href.indexOf('?') != -1 ? window.location.href.substring(0, window.location.href.indexOf('?')) : window.location.href;
			localRef = localRef.substring(localRef.indexOf("langref/") + 8);
			if (window.location.search != "")
				localRef += ("#" + window.location.search.substring(1));

			window.location.replace(baseRef + "index.html?" + localRef);
			return;
		}
		else
		{
			setStyle(".eclipseBody", "display", "block");
//			var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
//			if (isIE == false && window.location.hash != "")
			if (window.location.hash != "")
				window.location.hash=window.location.hash.substring(1);
		}
	}
	else if (window == top) { // no frames
		findObject("titleTable").style.display = "";
	}
	else { // frames
		findObject("titleTable").style.display = "none";
	}
	showTitle(asdocTitle);
}

function loadFrames(classFrameURL, classListFrameURL) {
	var classListFrame = findObject("classListFrame");
	if(classListFrame != null && classListFrameContent!='')
		classListFrame.document.location.href=classListFrameContent;
 
	if (isEclipse()) {
		var contentViewFrame = findObject(ECLIPSE_FRAME_NAME);
		if (contentViewFrame != null && classFrameURL != '')
			contentViewFrame.document.location.href=classFrameURL;
	}
	else {
		var classFrame = findObject("classFrame");
		if(classFrame != null && classFrameContent!='')
			classFrame.document.location.href=classFrameContent;
	}
}

function showTitle(title) {
	if (!isEclipse())
		top.document.title = title;
}

function loadClassListFrame(classListFrameURL) {
	if (parent.frames["classListFrame"] != null) {
		parent.frames["classListFrame"].location = classListFrameURL;
	}
	else if (parent.frames["packageFrame"] != null) {
		if (parent.frames["packageFrame"].frames["classListFrame"] != null) {
			parent.frames["packageFrame"].frames["classListFrame"].location = classListFrameURL;
		}
	}
}

function gotoLiveDocs(primaryURL, secondaryURL) {
	var url = liveDocsBaseUrl + "index.html?" + primaryURL;
	if (secondaryURL != null && secondaryURL != "")
		url += ("&" + secondaryURL);
	window.open(url, "mm_livedocs", "menubar=1,toolbar=1,status=1,scrollbars=1");
}

function findTitleTableObject(id)
{
	if (isEclipse())
		return parent.titlebar.document.getElementById(id);
	else if (top.titlebar)
		return top.titlebar.document.getElementById(id);
	else
		return document.getElementById(id);
}

function titleBar_setSubTitle(title)
{
	if (isEclipse() || top.titlebar)
		findTitleTableObject("subTitle").childNodes.item(0).data = title;
}

function titleBar_setSubNav(showConstants,showProperties,showStyles,showEffects,showEvents,showConstructor,showMethods,showExamples,
				showPackageConstants,showPackageProperties,showPackageFunctions,showInterfaces,showClasses,showPackageUse)
{
	if (isEclipse() || top.titlebar)
	{
		findTitleTableObject("propertiesLink").style.display = showProperties ? "inline" : "none";
		findTitleTableObject("propertiesBar").style.display = (showProperties && (showPackageProperties || showConstructor || showMethods || showPackageFunctions || showEvents || showStyles || showEffects || showConstants || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("packagePropertiesLink").style.display = showPackageProperties ? "inline" : "none";
		findTitleTableObject("packagePropertiesBar").style.display = (showPackageProperties && (showConstructor || showMethods || showPackageFunctions || showEvents || showStyles || showConstants || showEffects || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("constructorLink").style.display = showConstructor ? "inline" : "none";
		findTitleTableObject("constructorBar").style.display = (showConstructor && (showMethods || showPackageFunctions || showEvents || showStyles || showEffects || showConstants || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("methodsLink").style.display = showMethods ? "inline" : "none";
		findTitleTableObject("methodsBar").style.display = (showMethods && (showPackageFunctions || showEvents || showStyles || showEffects || showConstants || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("packageFunctionsLink").style.display = showPackageFunctions ? "inline" : "none";
		findTitleTableObject("packageFunctionsBar").style.display = (showPackageFunctions && (showEvents || showStyles || showEffects || showConstants || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("eventsLink").style.display = showEvents ? "inline" : "none";
		findTitleTableObject("eventsBar").style.display = (showEvents && (showStyles || showEffects || showConstants || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("stylesLink").style.display = showStyles ? "inline" : "none";
		findTitleTableObject("stylesBar").style.display = (showStyles && (showEffects || showConstants || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("effectsLink").style.display = showEffects ? "inline" : "none";
		findTitleTableObject("effectsBar").style.display = (showEffects && (showConstants || showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("constantsLink").style.display = showConstants ? "inline" : "none";
		findTitleTableObject("constantsBar").style.display = (showConstants && (showPackageConstants || showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("packageConstantsLink").style.display = showPackageConstants ? "inline" : "none";
		findTitleTableObject("packageConstantsBar").style.display = (showPackageConstants && (showInterfaces || showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("interfacesLink").style.display = showInterfaces ? "inline" : "none";
		findTitleTableObject("interfacesBar").style.display = (showInterfaces && (showClasses || showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("classesLink").style.display = showClasses ? "inline" : "none";
		findTitleTableObject("classesBar").style.display = (showClasses && (showPackageUse || showExamples)) ? "inline" : "none";

		findTitleTableObject("packageUseLink").style.display = showPackageUse ? "inline" : "none";
		findTitleTableObject("packageUseBar").style.display = (showPackageUse && showExamples) ? "inline" : "none";

		findTitleTableObject("examplesLink").style.display = showExamples ? "inline" : "none";
	}
}

function titleBar_gotoClassFrameAnchor(anchor)
{
	if (isEclipse())
		parent.classFrame.location = parent.classFrame.location.toString().split('#')[0] + "#" + anchor;
	else
		top.classFrame.location = top.classFrame.location.toString().split('#')[0] + "#" + anchor;
}

function setMXMLOnly() 
{
	if (getCookie("showMXML") == "false")
	{
		toggleMXMLOnly();
	}
}
function toggleMXMLOnly() 
{
	var mxmlDiv = findObject("mxmlSyntax");
	var mxmlShowLink = findObject("showMxmlLink");
	var mxmlHideLink = findObject("hideMxmlLink");
	if (mxmlDiv && mxmlShowLink && mxmlHideLink)
	{
		if (mxmlDiv.style.display == "none")
		{
			mxmlDiv.style.display = "block";
			mxmlShowLink.style.display = "none";
			mxmlHideLink.style.display = "inline";
			setCookie("showMXML","true", new Date(3000,1,1,1,1), "/", document.location.domain);
		}
		else
		{
			mxmlDiv.style.display = "none";
			mxmlShowLink.style.display = "inline";
			mxmlHideLink.style.display = "none";
			setCookie("showMXML","false", new Date(3000,1,1,1,1), "/", document.location.domain);
		}
	}
}

function showHideInherited()
{	
	setInheritedVisible(getCookie("showInheritedConstant") == "true", "Constant");
	setInheritedVisible(getCookie("showInheritedProtectedConstant") == "true", "ProtectedConstant");
	setInheritedVisible(getCookie("showInheritedProperty") == "true", "Property");
	setInheritedVisible(getCookie("showInheritedProtectedProperty") == "true", "ProtectedProperty");
	setInheritedVisible(getCookie("showInheritedMethod") == "true", "Method");
	setInheritedVisible(getCookie("showInheritedProtectedMethod") == "true", "ProtectedMethod");
	setInheritedVisible(getCookie("showInheritedEvent") == "true", "Event");
	setInheritedVisible(getCookie("showInheritedStyle") == "true", "Style");
	setInheritedVisible(getCookie("showInheritedEffect") == "true", "Effect");
}
function setInheritedVisible(show, selectorText)
{
	if (document.styleSheets[0].cssRules != undefined)
	{
		var rules = document.styleSheets[0].cssRules;
		for (var i = 0; i < rules.length; i++)
		{
			if (rules[i].selectorText == ".hideInherited" + selectorText)
				rules[i].style.display = show ? "" : "none";
				
			if (rules[i].selectorText == ".showInherited" + selectorText)
				rules[i].style.display = show ? "none" : "";
		}
	}
	else
	{
		document.styleSheets[0].addRule(".hideInherited" + selectorText, show ? "display:inline" : "display:none");
		document.styleSheets[0].addRule(".showInherited" + selectorText, show ? "display:none" : "display:inline");
	}
	setCookie("showInherited" + selectorText, show ? "true" : "false", new Date(3000,1,1,1,1), "/", document.location.domain);
	setRowColors(show, selectorText);
}

function setRowColors(show, selectorText)
{
	var rowColor = "#F2F2F2";
	var table = findObject("summaryTable" + selectorText);
	if (table != null)
	{
		var rowNum = 0;
		for (var i = 1; i < table.rows.length; i++)
		{
			if (table.rows[i].className.indexOf("hideInherited") == -1 || show)
			{
				rowNum++;
				table.rows[i].bgColor = (rowNum % 2 == 0) ? rowColor : "#FFFFFF";
			}			
		}
	}
}

function setStyle(selectorText, styleName, newValue)
{
	if (document.styleSheets[0].cssRules != undefined)
	{
		var rules = document.styleSheets[0].cssRules;
		for (var i = 0; i < rules.length; i++)
		{
			if (rules[i].selectorText == selectorText)
			{
				rules[i].style[styleName] = newValue;
				break;
			}
		}
	}
	else
	{
		document.styleSheets[0].addRule(selectorText, styleName + ":" + newValue);
	}
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜视频在线观看一区二区| 国产日韩三级在线| 成人午夜激情视频| 奇米精品一区二区三区四区| 亚洲成国产人片在线观看| 国产精品伦一区| 中文av字幕一区| 欧美精品一区二区三区很污很色的 | 国内成+人亚洲+欧美+综合在线| 亚洲精品国产无套在线观| 欧美韩国日本一区| 国产精品欧美久久久久一区二区| 久久视频一区二区| 精品国产青草久久久久福利| 欧美成人女星排行榜| 日韩三级视频中文字幕| 欧美一级在线观看| 欧美videos中文字幕| 日韩免费成人网| 欧美夫妻性生活| 日韩视频免费观看高清完整版 | 亚洲国产精品精华液网站| 一区二区三区四区视频精品免费 | 国产在线播放一区二区三区| 九九九精品视频| 精品一区二区在线视频| 国产精品99久久久久久有的能看 | 亚洲男帅同性gay1069| 亚洲男人天堂一区| 亚洲精品国产成人久久av盗摄| 亚洲免费在线电影| 五月综合激情网| 美脚の诱脚舐め脚责91| 奇米一区二区三区av| 国产福利91精品一区二区三区| 成人晚上爱看视频| 国产精品一级片| 99久久777色| 91麻豆精品国产91久久久使用方法| 日韩一区二区三区av| 日本一区二区三区四区| 亚洲狠狠爱一区二区三区| 免费xxxx性欧美18vr| caoporn国产精品| 在线成人高清不卡| 欧美日韩国产影片| 日韩精品自拍偷拍| 国产精品国产三级国产aⅴ中文 | 视频一区欧美日韩| 国产精品影音先锋| 日本久久一区二区三区| 在线精品亚洲一区二区不卡| 欧美日韩精品福利| 久久久亚洲精品一区二区三区| 亚洲精品中文在线影院| 久久99精品久久久久婷婷| 99久久久无码国产精品| 91精品免费观看| 17c精品麻豆一区二区免费| 日本亚洲一区二区| 国产九九视频一区二区三区| 成人激情午夜影院| 日韩美一区二区三区| 亚洲另类色综合网站| 国产一区视频网站| 欧美精品vⅰdeose4hd| 1000部国产精品成人观看| 精品影视av免费| 99久免费精品视频在线观看| 日韩美女视频一区二区在线观看| 亚洲精品成人在线| 不卡一区二区中文字幕| 精品不卡在线视频| 视频一区二区中文字幕| 在线观看av一区| 亚洲人被黑人高潮完整版| 国产成人精品免费网站| 日韩女优视频免费观看| 日韩一区欧美小说| 成人白浆超碰人人人人| 久久久无码精品亚洲日韩按摩| 日韩国产成人精品| 欧美剧在线免费观看网站| 亚洲精品成a人| 91日韩精品一区| 日韩伦理免费电影| av亚洲精华国产精华精华| 久久久久久久一区| 美女视频一区二区三区| 67194成人在线观看| 日本午夜一区二区| 91精品福利在线一区二区三区 | 欧美日韩国产电影| 午夜精品福利久久久| 欧美网站大全在线观看| 亚洲国产婷婷综合在线精品| 91国模大尺度私拍在线视频| 亚洲自拍另类综合| 欧美日韩国产小视频| 日日骚欧美日韩| 欧美日韩国产精选| 另类小说图片综合网| www国产成人| 成+人+亚洲+综合天堂| 国产精品福利在线播放| 91在线视频18| 亚洲在线中文字幕| 欧美一级高清片| 久久精品免费看| 69av一区二区三区| 国产精品综合一区二区三区| 国产农村妇女精品| 在线一区二区三区四区五区| 亚洲高清在线精品| 精品美女一区二区三区| 成人av资源站| 亚洲欧美日韩中文字幕一区二区三区| 国产精品影音先锋| 伊人色综合久久天天| 日韩欧美在线123| 高清国产一区二区| 一区二区三区中文字幕在线观看| 91精品国产免费久久综合| 丝袜美腿高跟呻吟高潮一区| 欧美色视频一区| 国产一区二区福利视频| 亚洲欧美日韩中文播放| 91精选在线观看| 成人免费视频一区| 奇米888四色在线精品| 国产精品国产三级国产a| 欧美日韩不卡在线| 91亚洲国产成人精品一区二区三| 偷窥国产亚洲免费视频| 欧美国产综合一区二区| 欧美精品久久久久久久多人混战 | 亚洲精品高清在线观看| 国产精品区一区二区三区| 精品国产乱码久久久久久久 | 成人午夜私人影院| 国产一区二区不卡在线 | 91视频一区二区三区| 国产成人免费在线观看不卡| 黄网站免费久久| 精品亚洲国内自在自线福利| 日本欧美在线观看| 免费av网站大全久久| 热久久免费视频| 美腿丝袜在线亚洲一区| 久久99这里只有精品| 激情成人午夜视频| 国产美女av一区二区三区| 国内精品在线播放| 国产福利一区在线| 成人午夜免费电影| 91蝌蚪porny| 欧美午夜一区二区| 91精品国产一区二区三区香蕉 | 国产一区在线观看麻豆| 国产91精品久久久久久久网曝门| 成人综合激情网| 91香蕉视频mp4| 欧美性极品少妇| 91精品国产综合久久精品麻豆 | 日本视频在线一区| 久久99国产精品免费网站| 国产精品自拍三区| 成人av电影在线网| 欧美色图免费看| 欧美精品一区二区三区高清aⅴ| 久久九九久精品国产免费直播| 国产精品网曝门| 一区二区三区中文免费| 奇米色一区二区三区四区| 国产大陆精品国产| 欧美亚洲高清一区二区三区不卡| 制服丝袜国产精品| 国产亚洲欧美日韩在线一区| 亚洲女女做受ⅹxx高潮| 日本免费新一区视频| 粉嫩一区二区三区在线看| 在线观看区一区二| 欧美精品一区二区蜜臀亚洲| 亚洲视频在线一区二区| 日本欧美一区二区三区| 丁香六月久久综合狠狠色| 在线一区二区观看| 国产婷婷色一区二区三区四区| 亚洲精品v日韩精品| 国产真实乱对白精彩久久| 在线视频你懂得一区二区三区| 精品少妇一区二区| 一区二区三区在线不卡| 国产精品一级二级三级| 欧美日韩国产小视频| 亚洲欧美怡红院| 国产剧情一区二区| 日韩一区二区三区在线观看| 亚洲婷婷综合久久一本伊一区| 精品一区二区三区免费视频|