Tagged Questions

XUL is an XML-based user interface markup language developed by Mozilla. It allows creating native-looking applications and is the base of Mozilla products like Firefox and Thunderbird as well as applications based on the Mozilla XULRunner platform.

learn more… | top users | synonyms

16
votes
6answers
2k views

How To Create a Quick Minimal Firefox Extension?

What the minimum basic setup required to begin developing a Firefox extension?
13
votes
6answers
8k views

Get current page URL from a firefox sidebar extension

I'm writing a sidebar extension for Firefox and need a way to get the URL of the current page so I can check it against a database and display the results. How can I do this?
12
votes
7answers
5k views

Is anyone using a firefox XUL IDE? [closed]

I'm not interested in Firebug, a XUL debugger, or a JavaScript editor, but a true WYSIWYG IDE for XUL form design.
12
votes
11answers
4k views

Best Debugging Tools for JavaScript/xulrunner Development

In the past few months I began my first serious JavaScript development, as I began developing XUL applications. I use Notepad++ as my editor, but I was pretty appalled to find (as far as I can tell) ...
10
votes
1answer
2k views

CSS pointer-events='none' and/or XUL mousethrough='always' in web pages for Firefox

Morning all. Very recently I asked this question on how to pass clicks through an element (e.g. full screen overlaying ). Received some good advice, but I still wondered which browsers supported this ...
9
votes
3answers
490 views

How to know if the network is (dis)connected?

How can I know, in Xul, if the network is (dis)connected? --update Using: function observe(aSubject, aTopic, aState) { if (aTopic == "network:offline-status-changed") { ...
9
votes
4answers
5k views

Opening a URL in current tab/window from a Firefox Extension

I am creating a Firefox Extension...what would be the javascript to open a URL in the current tab from a menuitem? e.g. in my overlay.xul file i have the following line: <menuitem label="Visit ...
8
votes
2answers
154 views

Running unit tests of JavaScript code from XUL - what and how

I am writing an XUL application. It is not a Firefox extension but a standalone app to be used through XULrunner. My intention is to adopt TDD in my development process and I am looking at RhinoUnit ...
8
votes
4answers
332 views

What does 'chrome' mean?

content: A browser for content. The content that is loaded inside the browser is not allowed to access the chrome above it. This sentence is seen on the Mozilla documentation for XUL. What does ...
8
votes
2answers
553 views

How to get text from Address Bar in Firefox extension

I am building a Firefox Extension. I am using XUL and Javascript to do this. I need to get the text from my Firefox browser's address bar. Please don't get confused with URL where the browser has ...
7
votes
6answers
2k views

Firefox extensions & XUL: get page source code

I am developing my first Firefox extension and for that I need to get the complete source code of the current page. How can I do that with XUL?
7
votes
2answers
674 views

Replicating Google Chrome Browser Actions popup Effect in a Firefox Extension

Chrome Browser Actions provide a really nice popup effect by default. Hovering over the toolbar icon provides a neat hover effect. Clicking the toolbar icon shows a nice animation that opens the ...
7
votes
1answer
341 views

XUL Testing Tools

Are there any tools for testing XUL? I'm using yui test for testing XPCOM. But I can't find any for XUL
7
votes
9answers
3k views

Is XML or XUL the future of Java GUI building?

After spending a lot of time and code on programming in Swing, I thought this can't be state-of-the-art Java GUI building. After not finding a user-friendly visual gui bilder for eclipse I stumbled ...
7
votes
3answers
1k views

How do I access (listen for) the multimedia keys (play/pause) in Mac OS X?

I want to write a Songbird extension binds the multimedia keys available on all Apple Mac OS X platforms. Unfortunately this isn't an easy google search and I can't find any docs. Can anyone point ...
6
votes
3answers
222 views

How to show a window in the fastest way possible?

I have 3 main windows in my Xulrunner app that will be accessed very frequently. The application is running on a very slow system, so before the window shows up, I see a fully black box, and then the ...
6
votes
3answers
350 views

Port a firefox extension to a BHO (Browser Helper Objects, aka IE extensions)

I have a Firefox extension that I would like to port to IE, I don't want to code it again. Is there something that can help me? It could come in very different ways: An IE BHO that can render a ...
6
votes
2answers
932 views

What is the proper way to get bounding box for HTML elements relative to the Window?

I'm writing a Firefox extension. I'm trying to limit it to just XUL+Javascript (no XPCOM). When I get a mouseover event for an HTML element, I need to get its bounding box in the windows coordinate ...
6
votes
5answers
410 views

Should I learn XUL?

I'm familiar with web programming, both client and server side, and I'd like to expand a bit my knowledge in order to be able to write some desktop programs. My problem is that I'm not really ...
6
votes
5answers
2k views

WYSIWYG Editor for XUL

Can anybody recommend a good graphic WYSIWYG editor for XUL?
6
votes
3answers
2k views

Beginning XUL & XPCOM development with XULRunner?

I am planning to design an application XUL & XPCOM for proprietary system. So i have decided to use C/C++ but how can I start the development as a beginner in this field I cannot find a good guide ...
5
votes
1answer
78 views

Is there any way to get the word under the context menu in a firefox extension?

I'm writing a Firefox extension to add a context menu element and I can get both the DOM element and the selected text, but can't manage to get the unselected word on which the right click event was ...
5
votes
1answer
169 views

How to enable embedded javascript debugger in SWT browser?

I want to embed a JavaScript debugger in a SWT browser. I'm using the SWT.MOZILLA flag for creating the browser. Since the JavaScript application I'm loading is complex, I need to have some JS ...
5
votes
0answers
119 views

Very slow launch time with XULRunner caused by profiles

I have an application that generates temporary XULRunner apps by building a skeleton application folder structure, and then launching it with: xulrunner -app /path/to/temporary/application.ini This ...
5
votes
1answer
68 views

Can I use LESS with Xul?

Can I use LESS with Xul? Does anyone already used them together?
5
votes
1answer
138 views

Auto-Suggest Source from JS-Chrome-Content Function in Firefox Addon

Regarding Mozillas Auto-Suggest Extension Tutorial I'd like to design my own auto-suggest extension. The tutorial uses json defined in the autocompletesearchparam param as suggestion-source. How ...
5
votes
2answers
3k views

open a link in a new tab in the same window

Hi I am making a firefox extension which needs to open a link in anew tab in the same window of firefox. How should i do this? This opens in a new window (replacing the old window): window.location ...
5
votes
2answers
570 views

Building XUL app a-la SongBird

I've started exploring XUL Runner as a potential tool for an upcoming app. I can get some good examples running using the command line xulrunner-bin myapp. How can compile it all in a native ...
5
votes
3answers
880 views

Can I have an XUL panel without a shadow in my Firefox extension?

XUL panels in a Firefox extension overlay always come with a shadow for free. How can I remove this shadow? Example code for the shadow effect I don't want: <popupset> <panel ...
4
votes
1answer
60 views

How to handle if the user interrupts the page load?

In my extension, I am relying on DOMContentLoaded event. This works fine. But fails if the user cancels the page load in middle. And my extension simply doesn't work. I want it to degrade gracefully ...
4
votes
1answer
147 views

What actually breaks in a new Firefox update? [closed]

With Firefox and its new "release every 6 weeks" strategy it seems that a large group of people are angered by this because they say "it updates too fast". However the next sentence is "I moved to ...
4
votes
2answers
291 views

How to run a XUL application in Mac OS X Snow Leopard?

I am trying to create a XUL "Hello World" application in Mac OS X. I download the XULRunner from here, followed this tutorial and then this tutorial and then this tutorial... None worked. So, I looked ...
4
votes
1answer
379 views

How to style firefox toolbarbutton with type=“menu”

I have a Firefox extension with a toolbarbutton which when clicked displays a panel, I achieve this by setting its type to either "menu" or "panel". My problem is this type of button does not style in ...
4
votes
4answers
333 views

Why this css z-index is not working in my XUL app?

I have this Xul file: <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <?xml-stylesheet href="chrome://greenfox/content/mycss.css" ...
4
votes
1answer
548 views

firefox addon : adding icon to context menu

I'm trying to build a firefox addon & I want to add image/icon in the right click content menu , for example, firebug had an icon in the right click context menu, ...
4
votes
2answers
275 views

What is XUL and XUL runner?

i've just installed songbird: it has a fantastic user interface. Then, i've read it's made with XUL, the core of mozilla firefox. Ok, but i don't understand: Songbird is a desktop interface behind a ...
4
votes
1answer
550 views

How to dynamically set “src” for browser or iframe element (Firefox extension)

I am trying to create a Firefox extension that uses a flex application. I have tried to wrap it in XUL types (<iframe> and <browser>) and I have no preference as to which one I use... whichever ...
4
votes
1answer
596 views

How do I get -moz-binding to work for ellipsis with data:text/xml?

We have a lot of elements on the project I am working on that use ellipsis styles, which, of course, work fine with pure CSS in all major browsers but FireFox. We implemented the -moz-binding fix for ...
4
votes
2answers
130 views

Opening the user's home folder?

My XULRunner application has a button named "Show Recordings". Pressing it should result in Windows Explorer opening the folder for the user. How can I achieve this? I can't find it in the File I/O ...
4
votes
1answer
807 views

Getting HTML out of selection / range from a web page in Mozilla Firefox

I currently using the following the get the selected text from a webpage into a custom firefox extension: getSelectedText: function(){ var textWindow = document.commandDispatcher.focusedWindow; ...
4
votes
1answer
711 views

How to insert XUL into a XHTML document

I have a XHTML document and wnat to embed XUL widgets into the document. What is the correct XML syntax to do so? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
4
votes
2answers
530 views

How best to deploy my XUL app?

I have a xul app that I think would be useful, and I want to deploy it. The target platform is Linux; I believe it will work on Windows/OSX as well but haven't tested. What is the best way to deploy ...
4
votes
4answers
1k views

How to perform a background load and scraping of a page with XUL/Firefox Extension

I want to scrape the user pages of SO to give the owners of my toolbar the updated information on their questions/answers/etc... This means I need to do this in the background, parse the pages, ...
4
votes
6answers
5k views

Embedding XULRunner application on Java

My goal is to get Limewire(JAVA) and Songbird(XULRunner) to run together. I was thinking the best way is to run the XUL application(songbird) inside a JAVA swing panel. Is there another way? Would ...
4
votes
3answers
2k views

How can I get the window object that an HTML node belongs to using JavaScript?

Because of several iframes, XUL browser elements, and so forth, I have a number of window objects in my XULRunner application. I'm looking for the best way to find the window object that a specified ...
4
votes
3answers
4k views

How do you make a post request into a new browser tab using JavaScript / XUL?

I'm trying to open a new browser tab with the results of a POST request. I'm trying to do so using a function containing the following code: var windowManager = ...
4
votes
1answer
269 views

Checking if userinput is a valid URI in XUL

Is there an built-in function/method that can check if a given string is a valid URI or not in the Mozilla XUL toolkit. (I have looked for one but found none, but since this is my first time using XUL ...
3
votes
2answers
223 views

Using JetPack to add toolbar buttons? Integrating XUL and JetPack for Firefox Add-ons?

I have already coded most of a Firefox add-on using the JetPack API. I am now discovering that jetpack might not be powerful enough for my purposes. I need two things: 1) A drop down button in the ...
3
votes
1answer
72 views

Is it possible to write jQuery inside XUL file?

I want to use jQuery for my XUL files. Generally I use XUL Explorer to create and text each page individually & it's really to use script blocks inside the XUL files like this: We can write ...
3
votes
1answer
45 views

How to check whether a node belongs to html or the browser window using javascript?

I'm working on a Firefox extension, in that I have a node which I want to know that whether the node belongs to the html (I mean the node belongs to document.body elements like div, p, etc) or just ...

1 2 3 4 5 15