Search completed in 1.61 seconds.
4 results for "XUL_Tutorial":
Index - Archive of obsolete content
ArchiveIndex
1731 xul tutorial tutorials, xul, xul_tutorial this tutorial describes xul, the xml user-interface language.
... 1733 adding buttons tutorials, xul, xul_tutorial in this section, we will look at how to add some simple buttons to a window.
... 1734 adding event handlers tutorials, xul, xul_tutorial the find files dialog so far looks quite good.
...And 71 more matches
Index - Archive of obsolete content
ArchiveMozillaXULIndex
1000 xul tutorial tutorials, xul, xul_tutorial this tutorial describes xul, the xml user-interface language.
... 1002 adding buttons tutorials, xul, xul_tutorial in this section, we will look at how to add some simple buttons to a window.
... 1003 adding event handlers tutorials, xul, xul_tutorial the find files dialog so far looks quite good.
...And 71 more matches
Dialogs in XULRunner - Archive of obsolete content
ArchiveMozillaXULRunnerDialogs in XULRunner
the xul filepickers are xpcom components and must be instantiated before using, like this: function dofileopen() { /* see: http://developer.mozilla.org/en/docs/xul_tutorial:open_and_save_dialogs */ var nsifilepicker = components.interfaces.nsifilepicker; var fp = components.classes["@mozilla.org/filepicker;1"].createinstance(nsifilepicker); fp.init(window, "open file", nsifilepicker.modeopen); fp.appendfilters(nsifilepicker.filtertext | nsifilepicker.filterall); var res = fp.show(); if (res == nsifilepicker.returnok) { var thefile = fp.file; a...
Writing localizable code
MozillaLocalizationWriting localizable code
for technical details please also look at xul_tutorial:localization.