- 246 名前:デフォルトの名無しさん [2008/03/11(火) 12:16:32 ]
- もともとのステイタスバーの上にテキストボックスとボタンを配置したいのですが
hboxにid属性をつけると表示されません。どうしてでしょうか? 以下ソースです。汚いですが。。。 <?xml version="1.0"?> <overlay id="inputhelperOverlay" xmlns="www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <popup id="contentAreaContextMenu"> <menuitem id="show_InputHelper" label="InputHelper" insertafter="context-undo" oncommand="show_IH()"/> </popup> <script src="Overlay.js" /> <hbox insertbefore="status-bar" id="ihbox"> <textbox multiline="true" width="400" rows="4" /> <button label="Copy" oncommand="copy(); return false;"/> </hbox> </overlay> </overlay>
|

|