Problems with multi windows

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

Jack oneill

New Member
Sep 4, 2001
81
0
0
42
France
atlantis.jolt.co.uk
Hi !

I have a problem with my windows... At the beginning of a round, i'm drawing in window like basic UT one (speechwindow). There is options on this window which allow me to open new window.

But i would like to make appear another window at the same time as the first window. So, i would need to open two windows at the same time. But when i do that (either by showing a child window or showing another window), both are appearing, but i can use only the second. The first is "freezed" and i must close the second in order to use the first.

What i would like to make, is allowing the player to use the first menu. The second is just showing infos about the inventory. But with two menus, it doesn't work.

Do you think i can make two different menus in a class ? Maybe i could make two before paint and created functions... Anybody has an idea ?

Thx :)
 

Jack oneill

New Member
Sep 4, 2001
81
0
0
42
France
atlantis.jolt.co.uk
hum... but how can i make it work ? I can't know where my window start and where it stops.

Is it possible to launch a child (when child are draws, parent windows can be used) as early as the menu open and let it appear until the end ?
 

Raeled

Feuer Frei!
Jul 1, 2001
161
0
0
40
Dordrecht, The Netherlands
Visit site
if you click on a window

then uwindow checkes if that window got a client window there, if it does then the click goes to the client window. if there is no client window there, then the window itself calls it's click events.
 

Jack oneill

New Member
Sep 4, 2001
81
0
0
42
France
atlantis.jolt.co.uk
Ok, i've looked at my created function, and i've seen that both windows where at the same place (hidden parts..).

So, i've fixed it and twice are working. I'll see if it works well because there is problems for the moment.

I'll go back to say you if it's good :) Thx :)
 

Jack oneill

New Member
Sep 4, 2001
81
0
0
42
France
atlantis.jolt.co.uk
Well, i still have the problem ;( The tip works only if the window is a child of the first one. It works well except that it can't be slided in (with slidein() function) since it is a child. My first window slide, but not the second which is just under.

Also, i don't suceed in drawing a var in the option field. You may know that UT menu is just drawing strings and apply stuffs when you click on buttons. But here, i just want to draw a dynamic var. And i don't want to apply things when clicking on it.

Any idea ?