Is it possible to clone a xul window multiple times, with diffferent contents?
Charles Anjos <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xpfe |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
I'm trying to create a "sticky-note" app where I want to manage any number of notes at any given time. Already managed to create the main program that can open another window (that will be my sticky note), but calling the function that created the first window won't call anymore windows. Is there a way to create another instance of one window multiple times with different contents?
This is the Javascript that i'm using to create a window:
window.open("chrome://stickies/content/window.xul","window","chrome=1, titlebar=0");