Search found 25 matches
- Sun Nov 21, 2010 21:16
- Forum: Help
- Topic: Stranger errors
- Replies: 2
- Views: 2090
Stranger errors
On some computers runs perfectly, but on other computers have the following error: 21/11/2010 19:10:59 (Error) Attempt to set value of '251' to read only property 'HorzExtent' on window: root/DialogBox/text_info 21/11/2010 19:10:59 (Error) Attempt to set value of '19.8618' to read only property 'Ver...
- Tue Nov 16, 2010 16:15
- Forum: Skins and Themes
- Topic: My Skin :)
- Replies: 4
- Views: 15217
Re: My Skin :)
Jamarr wrote:So how is progress on your skin coming along? Are you still planning on making it publicly available?
Sorry, we do not understand the question (my English is poor)
My game using CEGUI:
Thanks
- Thu Nov 11, 2010 23:37
- Forum: Help
- Topic: Important warning for those using DirectX
- Replies: 2
- Views: 2268
Re: Important warning for those using DirectX
I agree with you, friend
that I received some private messages asking about the state of DirectX, I'm posting here for all to see
that I received some private messages asking about the state of DirectX, I'm posting here for all to see
- Thu Nov 11, 2010 04:30
- Forum: Help
- Topic: Important warning for those using DirectX
- Replies: 2
- Views: 2268
Important warning for those using DirectX
After I gave head to break for a few hours, I managed to solve the problem he was having. The CEGUI was altering the state of my device when I was calling the function to render: CEGUI::System::getSingleton().renderGUI(); I solved the problem by simply saving all current states and applying them aga...
- Sat Nov 06, 2010 20:03
- Forum: Help
- Topic: Window is transparent when I don't want it to be.
- Replies: 4
- Views: 3188
Re: Window is transparent when I don't want it to be.
What is your video card? Is updated with the latest driver?
Try running on another computer with a different video card
Try running on another computer with a different video card
- Fri Nov 05, 2010 15:04
- Forum: Skins and Themes
- Topic: My Skin :)
- Replies: 4
- Views: 15217
- Wed Nov 03, 2010 18:39
- Forum: Help
- Topic: Listbox going bottom top
- Replies: 5
- Views: 3195
Re: Listbox going bottom top
I would also like to know
- Wed Nov 03, 2010 17:43
- Forum: Help
- Topic: Console with MultiLineEditbox or ListBox?
- Replies: 1
- Views: 2177
Console with MultiLineEditbox or ListBox?
I searched about and found this: http://www.cegui.org.uk/phpBB2/viewtopic.php?f=10&t=4358 But I have a problem, using MultiLineEditbox: CEGUI::Editbox* input = static_cast<CEGUI::Editbox*>(CEGUI::WindowManager::getSingletonPtr()->getWindow("root/Console/input")); input->subscribeEvent(...
- Tue Nov 02, 2010 00:14
- Forum: Help
- Topic: Menu fixed
- Replies: 10
- Views: 5533
Re: Menu fixed
That was my doubt, and was answered This will not work because the signature of PostQuitMessage does not match the signature required by CEGUI::Event::Subscriber . In otherwords, the subscribing function must match this signature: bool function(const CEGUI::EventArgs& args) . As for the code tha...
- Mon Nov 01, 2010 20:44
- Forum: Help
- Topic: Menu fixed
- Replies: 10
- Views: 5533
Re: Menu fixed
Sorry! I tried only putting the function PostQuitMessage(0) in CEGUI::Event::Subscriber this way: bt_exit->subscribeEvent(CEGUI::PushButton::EventClicked, CEGUI::Event::Subscriber(PostQuitMessage(0))); I read the article Injecting Inputs, but not found something that did not need to create a functio...
- Mon Nov 01, 2010 18:28
- Forum: Help
- Topic: [solved] Russian symbols in custom CEGUI::String
- Replies: 16
- Views: 9472
Re: Russian symbols in custom CEGUI::String
Show the CEGUI Logger
- Mon Nov 01, 2010 18:10
- Forum: Help
- Topic: Menu fixed
- Replies: 10
- Views: 5533
Re: Menu fixed
To execute an action on the button I'm doing this: CEGUI::PushButton* bt_exit = static_cast<CEGUI::PushButton*>(CEGUI::WindowManager::getSingletonPtr()->getWindow("MainWindow/exit")); bt_exit->subscribeEvent(CEGUI::PushButton::EventClicked, CEGUI::Event::Subscriber(&CEGUI_PushButton_Ex...
- Mon Nov 01, 2010 15:15
- Forum: Help
- Topic: Menu fixed
- Replies: 10
- Views: 5533
Re: Menu fixed
Thanks Kulik
And how to fix the framewindow nobody move around or change its size?
And how to fix the framewindow nobody move around or change its size?
- Mon Nov 01, 2010 14:24
- Forum: Help
- Topic: Menu fixed
- Replies: 10
- Views: 5533
Re: Menu fixed
Thanks I'm using OgreTray, in looknfeel the Static Text is: <!-- :::: StaticText --> <WidgetLook name="OgreTray/StaticText"> <Property name="BackgroundEnabled" value="True" /> <Property name="FrameEnabled" value="True" /> <Property name="TextCol...
- Mon Nov 01, 2010 13:35
- Forum: Help
- Topic: Menu fixed
- Replies: 10
- Views: 5533
Menu fixed
I wanted to make a menu with only letters, something like this: http://funhouse.rivulent.com/images/Counte14.jpg I thought about creating a FrameWindow, and leave it with the 0.0 Alpha, and Alpha texts for 1.0f But how do I turn the text to buttons? And how to fix the framewindow nobody move around ...