mysteriously unselectable UI components

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Valor
Posts: 40
Joined: Fri Jul 30, 2010 1:20 pm

mysteriously unselectable UI components

Post by Valor »

I am trying to create a menu on the far right of the screen and when I put a button or list box at the far right and in the middle...they become unselectable....i wonder why? it's like an invisible area on the window where the items become unselectable...? is it possible i made another component too big and part of the invisible part is covering the unselectable item??? how can i force an item to be selectable???
Iyad
Posts: 140
Joined: Sat Mar 07, 2009 1:18 am
Location: Montreal, Canada

Post by Iyad »

Im sure you are overriding some elements. Clean your code and be sure that there is no other gui element added after the buttons and overriding it. If its not the case, post a piece of code so we could help.
#include <Iyad.h>
Acki
Posts: 3496
Joined: Tue Jun 29, 2004 12:04 am
Location: Nobody's Place (Venlo NL)
Contact:

Post by Acki »

well, 2 common errors:
1st overlapping elements (like you thought)
2nd your event receiver always returns true
while(!asleep) sheep++;
IrrExtensions:Image
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
Post Reply