- 202 名前:名無しさん@お腹いっぱい。 mailto:sage [2008/06/25(水) 23:45:25 ID:y5nForB/0]
- >>183
ツールボタン中ボタンで別ウィンドウで開くスクリプト書いた。userChrome.js用 (function(){ var sageButton = document.getElementById("sage-button"); if(!sageButton) return; sageButton.addEventListener("click", function(event){ if(event.button != 1) return; var it = Cc["@mozilla.org/appshell/window-mediator;1"] .getService(Ci.nsIWindowMediator).getEnumerator(null); while(it.hasMoreElements()){ var win = it.getNext(), id = win.document.documentElement.id; if(id == "pageSagePanel" || id == "sagePanel"){ win.focus(); return; }} window.openDialog("chrome://sage/content/sage.xul","sageWin", "width=202,height=500,chrome,dialog=no,resizable,alwaysRaised"); }, false); })();
|

|