Re: [qooxdoo-devel] Window opening

2010-06-11 Thread ulr00t
Both solutions work fine! Have to take in consideration that: this.getRoot().add(win, {left:100, top:250}); Must be changed to: this.getRoot().add(this.win, {left:100, top:250}); or it won't work at all. (I'm a novice and it took me about 30 minutes to figure this heheh). I'll analyze which m

Re: [qooxdoo-devel] Window opening

2010-06-11 Thread Fritz Zaucker
On Fri, 11 Jun 2010, Derrell Lipman wrote: > On Fri, Jun 11, 2010 at 16:01, Fritz Zaucker wrote: > >> On Fri, 11 Jun 2010, Derrell Lipman wrote: >> >>> Instead of the above assignment to a local variable called win, assign it >> to >>> a variable of your application instance: >>> >>> this.win =

Re: [qooxdoo-devel] Window opening

2010-06-11 Thread Derrell Lipman
On Fri, Jun 11, 2010 at 16:01, Fritz Zaucker wrote: > On Fri, 11 Jun 2010, Derrell Lipman wrote: > > > Instead of the above assignment to a local variable called win, assign it > to > > a variable of your application instance: > > > > this.win = new qx.ui.window.Window("Acerca de...", > > "resou

Re: [qooxdoo-devel] Window opening

2010-06-11 Thread Fritz Zaucker
On Fri, 11 Jun 2010, Derrell Lipman wrote: > On Fri, Jun 11, 2010 at 15:47, ulr00t wrote: > >> >> Hello, first of all, thanks to whoever made this a wonderful project to >> work >> on :) >> >> My problem is the following one: >> >> I want to open a window I've created outside of "main" (the reaso

Re: [qooxdoo-devel] Window opening

2010-06-11 Thread Derrell Lipman
On Fri, Jun 11, 2010 at 15:47, ulr00t wrote: > > Hello, first of all, thanks to whoever made this a wonderful project to > work > on :) > > My problem is the following one: > > I want to open a window I've created outside of "main" (the reason is that > I'd like to not overload "main" and I'd lik

[qooxdoo-devel] Window opening

2010-06-11 Thread ulr00t
Hello, first of all, thanks to whoever made this a wonderful project to work on :) My problem is the following one: I want to open a window I've created outside of "main" (the reason is that I'd like to not overload "main" and I'd like to organize better the code), but not yet, just create it.