Search found 116 matches

by dgrafix
Fri Jun 05, 2009 10:14 pm
Forum: Beginners Help
Topic: Large text boxes?
Replies: 4
Views: 360

I have done that but once the box fills up it no scroll bars appear. Also the text seems to always start halfway down.
by dgrafix
Wed Jun 03, 2009 10:19 pm
Forum: Beginners Help
Topic: Large text boxes?
Replies: 4
Views: 360

Large text boxes?

How can i create a large text edit box? I have found the multiline state but it puts the text halfway down and there are no scrollers :/

Is there a gui element to do this?
by dgrafix
Thu May 07, 2009 10:48 pm
Forum: Beginners Help
Topic: whats the command to create a "pivot"
Replies: 4
Views: 412

Odd, this test function returns a 0x0 with emptyscenenode, but returns an address using addcubescenenode

//AddPivot
irr::scene::ISceneNode * AddPivot(irr::scene::ISceneNode * parent)
{
return irrSmgr->addEmptySceneNode(parent);
}

:?
by dgrafix
Thu May 07, 2009 10:08 pm
Forum: Beginners Help
Topic: whats the command to create a "pivot"
Replies: 4
Views: 412

Thats what i thought, but i get exceptions when i attempt to get it's rotation etc:
by dgrafix
Tue May 05, 2009 8:50 pm
Forum: Beginners Help
Topic: Overriding a window close event.
Replies: 3
Views: 452

Sorry noob here :D I have my event detection here: case irr::gui::EGET_ELEMENT_CLOSED: { if (id == 5000) { ((irr::gui::IGUIWindow*)event.GUIEvent.Caller)->setVisible(false); i want something here like event.cancel() or something }
by dgrafix
Mon May 04, 2009 9:52 pm
Forum: Beginners Help
Topic: Pitch Yaw and Roll of a node?
Replies: 1
Views: 309

Pitch Yaw and Roll of a node?

Which function(s) do i need return these values in degrees?
by dgrafix
Sat May 02, 2009 11:05 pm
Forum: Beginners Help
Topic: Strange rotations?
Replies: 0
Views: 324

Strange rotations?

I am yaw turning a cube with the X speed of the mouse. when i monitor the getRotation().Y of the Y axis, it seems to go from 360 down to 270 then start climbing again. If i keep going it goes from 0 to 90 back to 0 again. I am stumped :shock: Here is my function: void TurnNode(irr::scene::ISceneNode...
by dgrafix
Sat Apr 25, 2009 8:41 pm
Forum: Beginners Help
Topic: Overriding a window close event.
Replies: 3
Views: 452

Overriding a window close event.

I need to be able to either hide the X or the prefered option would be a way of cancelling the window closure and then hiding it instead. The reason is, i would like to maintain the data that has been set in a tools dialogue. I have an event that fires like this already to record it's last position:...
by dgrafix
Sat Apr 25, 2009 7:23 pm
Forum: Beginners Help
Topic: Is it possible to force a menu event?
Replies: 7
Views: 460

I tried that but it wants a zeroindex which does not appear to be the same as the ID assigned to it (at least i assume thats why i get a segf) :/
I dont want to hard code its position in the menu as the menu might change later.
by dgrafix
Sat Apr 25, 2009 6:56 pm
Forum: Beginners Help
Topic: Is it possible to force a menu event?
Replies: 7
Views: 460

Is it possible to force a menu event?

I have a menu called view which brings up tool dialogue windows. The menu items are checkable. And hide windows if unchecked and show if not. Problem i am having is when the window's X is clicked, the menu option stays checked. I want a way of forcing a menu event to un-check it (or simply track it ...
by dgrafix
Sat Apr 25, 2009 5:04 pm
Forum: Beginners Help
Topic: Apearance of GuiStaticText
Replies: 2
Views: 307

Thanks, that worked :)
by dgrafix
Sat Apr 25, 2009 2:36 pm
Forum: Beginners Help
Topic: Apearance of GuiStaticText
Replies: 2
Views: 307

Apearance of GuiStaticText

How do you make the StaticGuiText look different in more than one place? For example bold or different fonts. When i try and change the font for one line it just ignores it and uses whatever font was last used before it draws for all text.
by dgrafix
Thu Apr 23, 2009 7:07 pm
Forum: Beginners Help
Topic: Gui Editor?
Replies: 0
Views: 430

Gui Editor?

Is there an updated version of the GUI editor/alternative? I took a look at the one supplied but it doesnt seem to work 100%. Copy paste doesnt seem to work and the 'toolbox' is empty :/

I would try and patch it up myself but i am a bit of a noob and cannot work out quite what is going on in there.
by dgrafix
Mon Apr 20, 2009 8:58 pm
Forum: Beginners Help
Topic: Strings again :roll:
Replies: 4
Views: 599

Thanks
by dgrafix
Sun Apr 19, 2009 7:59 pm
Forum: Beginners Help
Topic: Strings again :roll:
Replies: 4
Views: 599

ah they construct like that do they? does this work for irr classes to std & vice versa?