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
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 =
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
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
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
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.