Search found 25 matches

by wheatas
Mon Oct 16, 2006 7:22 pm
Forum: Beginners Help
Topic: Acki's IrrExtensions
Replies: 9
Views: 311

ok, now compiled and changed the dll and .a and the include dir...

so now same problem as described above... :cry:

thanks for all the help...
by wheatas
Mon Oct 16, 2006 6:46 pm
Forum: Beginners Help
Topic: Acki's IrrExtensions
Replies: 9
Views: 311

tried to recompile, but there where errors???
by wheatas
Mon Oct 16, 2006 6:21 pm
Forum: Beginners Help
Topic: Acki's IrrExtensions
Replies: 9
Views: 311

Hi Acki,

sorry for bothering you, but there are no dlls or libs in that folder though the folder exists!
by wheatas
Mon Oct 16, 2006 1:35 pm
Forum: Beginners Help
Topic: Acki's IrrExtensions
Replies: 9
Views: 311

havent found any new dll,
where could I find it?
by wheatas
Sun Oct 15, 2006 8:01 pm
Forum: Beginners Help
Topic: Acki's IrrExtensions
Replies: 9
Views: 311

Acki's IrrExtensions

Hi all, so now I tried to use Acki's IrrExtensions, it compiles all fine but if I choose a driverType, it can't draw anything, only tells me has a problem and shuts down.... ok I tell you what I have done: Allways used normal GUIInterface in my project. then I used Acki's tool to create the new incl...
by wheatas
Mon Oct 09, 2006 8:27 pm
Forum: Beginners Help
Topic: listbox not very reliable?
Replies: 2
Views: 190

Hi, thanks for the hint, but could you explain how to use the tool?
Sorry but I did'nt understand the description...
by wheatas
Sat Oct 07, 2006 7:36 pm
Forum: Beginners Help
Topic: listbox not very reliable?
Replies: 2
Views: 190

listbox not very reliable?

Hi,

I'm using some listboxes in my programm and I find them not very reliable, sometimes you can't scroll upwards, selections are not registered everytime and so on.

Does anybody know these problems, and has anyone an clue how to make it work more steady?

thanks
wheatas
by wheatas
Thu Oct 05, 2006 8:22 pm
Forum: Beginners Help
Topic: change font?
Replies: 2
Views: 343

change font?

Hi, I'm trying to change the font of my programm with the sample shown in IOtutorial. now my questions, is it necessary to use a .bmp? Is there any other way to change fonts? Here is my code for font changing... and its not working... :( IGUISkin* skin = environment->getSkin(); IGUIFont* font = envi...
by wheatas
Wed Oct 04, 2006 7:30 pm
Forum: Beginners Help
Topic: button->setVisible(false) not working
Replies: 16
Views: 940

Hello...

sorry for bothering you so long...
I now found it was my fault ...
its not exactly like I override the visibility but I do not initialise the condtion for shouldbeVisible...

thanks for all! :D
by wheatas
Wed Oct 04, 2006 1:00 pm
Forum: Beginners Help
Topic: button->setVisible(false) not working
Replies: 16
Views: 940

sounds more like it...

now I tried to do
environment->drawAll();
after the new selection of visible buttons...


(tried only button->draw() before)

but still does'nt work...
is there any other proceedure to draw the gui or is it correct with drawAll?
by wheatas
Wed Oct 04, 2006 12:22 pm
Forum: Beginners Help
Topic: button->setVisible(false) not working
Replies: 16
Views: 940

@moneycracks i always used setVisible(false); or setVisible(true); tried it, same behaviour... :cry: and for the second answer: ok, for the first time a use a for loop with y, and the second time its again a for loop but with x. Perhaps I should have printet it aswell... sorry @stef_ thanks for tryi...
by wheatas
Wed Oct 04, 2006 8:35 am
Forum: Beginners Help
Topic: button->setVisible(false) not working
Replies: 16
Views: 940

Hi again,

ok checked it and the isVisible returns 1 so ...

any other idea why its not working???

thanks
by wheatas
Wed Oct 04, 2006 8:28 am
Forum: Beginners Help
Topic: button->setVisible(false) not working
Replies: 16
Views: 940

but when irrlicht does'nt allow to set it visible, why does it appear???

comment: this should not mean that I checked this till now...
by wheatas
Wed Oct 04, 2006 8:25 am
Forum: Beginners Help
Topic: button->setVisible(false) not working
Replies: 16
Views: 940

@hybrid:
yes, if I set visible to 1 initialy it shows up right from the beginning...

@MikePhelps
yes, I'm sure the event is called, because the text of some of the buttons changes... (the ones that should stay visible)

but when irrlicht does'nt allow to set it visible, why does it appear???
by wheatas
Tue Oct 03, 2006 8:27 pm
Forum: Beginners Help
Topic: button->setVisible(false) not working
Replies: 16
Views: 940

in main: for(y=0; y < 10; y++) { possibility[y] = environment->addButton(rect<s32>(10,120+(y*20),300,140+(y*20)), 0, 111+y, L""); possibility[y]->setVisible(0); } then in the event handler after selecting a different kind of list box item if(should be shown) { text = "blabla"; po...