A.J.Brush wrote:

In the long run I have to create a toolbar that sits in Mozilla web browser and does some clever things to the window content, while the user browses the web.

At the moment getting a dummy toolbar there is proving difficult!

the layout of my xul file is this

<?xml version="1.0" encoding="iso-8859-1"?>
<overlay id = "my overlay" 
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";>
   <toolbar id="my bar">
                <toolbarbutton id = "mybutton" label = "my button" />
   </toolbar>
</overlay>

Setting followup NG to netscape.public.dev.xul.


XML IDs cannot have a space. Try <overlay id="myoverlay">

Secondly, you never specified where the overlay was going to fit in. <toolbar id="myBar"> needs to be wrapped in the containing <toolbox> with the ID matching that of the file you are overlaying.

--BDS

_______________________________________________
Mozilla-xpcom mailing list
[EMAIL PROTECTED]
http://mail.mozilla.org/listinfo/mozilla-xpcom

Reply via email to