His solution satisfied, thank youJP wrote:I don't know whether it will help but instead of 'break' you should return true...
Search found 46 matches
- Thu Sep 11, 2008 2:31 pm
- Forum: Beginners Help
- Topic: Key Pressed duplicate
- Replies: 3
- Views: 271
- Thu Sep 11, 2008 2:15 pm
- Forum: Beginners Help
- Topic: Key Pressed duplicate
- Replies: 3
- Views: 271
Key Pressed duplicate
Hi, plase help, y event receiver is receiving Input Key Event doubled.
if (event.EventType == irr::EET_KEY_INPUT_EVENT&&!event.KeyInput.PressedDown)
{
switch(event.KeyInput.Key)
{
case KEY_RETURN:
guienv->addMessageBox(L"Error",L"1",0,EMBF_OK);
break;
}
}
I get two windows writing ...
if (event.EventType == irr::EET_KEY_INPUT_EVENT&&!event.KeyInput.PressedDown)
{
switch(event.KeyInput.Key)
{
case KEY_RETURN:
guienv->addMessageBox(L"Error",L"1",0,EMBF_OK);
break;
}
}
I get two windows writing ...
- Thu Sep 11, 2008 2:14 pm
- Forum: Beginners Help
- Topic: Key Pressed duplicate
- Replies: 1
- Views: 181
Key Pressed duplicate
Hi, plase help, y event receiver is receiving Input Key Event doubled.
if (event.EventType == irr::EET_KEY_INPUT_EVENT&&!event.KeyInput.PressedDown)
{
switch(event.KeyInput.Key)
{
break;
}//final do switch(event.KeyInput.Key)
}// final do if (node != 0 && event.EventType == irr::EET_KEY ...
if (event.EventType == irr::EET_KEY_INPUT_EVENT&&!event.KeyInput.PressedDown)
{
switch(event.KeyInput.Key)
{
break;
}//final do switch(event.KeyInput.Key)
}// final do if (node != 0 && event.EventType == irr::EET_KEY ...
- Tue Sep 09, 2008 1:29 pm
- Forum: Beginners Help
- Topic: EditBox originally selected
- Replies: 2
- Views: 229
- Tue Sep 09, 2008 1:11 pm
- Forum: Beginners Help
- Topic: EditBox originally selected
- Replies: 2
- Views: 229
EditBox originally selected
I would like to make the editbox open already selected, I am making a login screen, and I wish that were already in the editbox edition, there must click to select and edit later, as I do?
Thanks
Thanks
- Mon Sep 08, 2008 7:13 pm
- Forum: Beginners Help
- Topic: setDrawBorder Error
- Replies: 1
- Views: 215
setDrawBorder Error
Hi,I have a problem
IGUIEditBox* login;
login=guienv->addEditBox(L"gam",rect<s32>(421, 566, 672, 578), true, 0, 1);
login->setDrawBorder(false);
Error:
24 C:\Dev-Cpp\Projetos\quiz 3.0\room\principal.h 'class irr::gui::IGUIEditBox' has no member named 'setDrawBorder'
IrrLicht 1.3
IGUIEditBox* login;
login=guienv->addEditBox(L"gam",rect<s32>(421, 566, 672, 578), true, 0, 1);
login->setDrawBorder(false);
Error:
24 C:\Dev-Cpp\Projetos\quiz 3.0\room\principal.h 'class irr::gui::IGUIEditBox' has no member named 'setDrawBorder'
IrrLicht 1.3
- Sat Aug 30, 2008 4:01 pm
- Forum: Beginners Help
- Topic: Command My event receiver KeyInput.Key
- Replies: 2
- Views: 343
- Sat Aug 30, 2008 3:28 pm
- Forum: Beginners Help
- Topic: Command My event receiver KeyInput.Key
- Replies: 2
- Views: 343
Command My event receiver KeyInput.Key
Hi, please, which command esc end enter, example key press Q KEY_KEY_Q,
I would like to know what the ESC key and ENTER
Thanks
I would like to know what the ESC key and ENTER
Thanks
- Thu Aug 14, 2008 6:11 pm
- Forum: Beginners Help
- Topic: Stop -device->run();
- Replies: 0
- Views: 92
Stop -device->run();
There is as stopping
Code: Select all
device-> run() not using closeDevice ();- Thu Aug 14, 2008 6:10 pm
- Forum: Beginners Help
- Topic: Stop device->run();
- Replies: 0
- Views: 89
Stop device->run();
There is as stopping
Code: Select all
device-> run() not using closeDevice ();- Thu Aug 14, 2008 6:06 pm
- Forum: Beginners Help
- Topic: Stop device->run();
- Replies: 0
- Views: 80
Stop device->run();
There is as stopping device-> run () without using closeDevice ();
- Thu Aug 14, 2008 6:05 pm
- Forum: Beginners Help
- Topic: Stop device->run();
- Replies: 0
- Views: 154
Stop device->run();
There is as stopping device-> run () without using closeDevice ();
- Thu Aug 14, 2008 2:33 pm
- Forum: Beginners Help
- Topic: All GuiElement alpha chanel
- Replies: 3
- Views: 299
- Thu Aug 14, 2008 2:19 pm
- Forum: Beginners Help
- Topic: All GuiElement alpha chanel
- Replies: 3
- Views: 299
All GuiElement alpha chanel
Hi,
are all elements of guielement on alpha chanel, leave as normal?
Imagem game
http://img167.imageshack.us/img167/5926/imagemtu7.th.jpg
#include <irrlicht.h>
#include <sqlite3.h>
using namespace irr;
#include "funcoes.h"
using namespace core;
using namespace scene;
using namespace video ...
are all elements of guielement on alpha chanel, leave as normal?
Imagem game
http://img167.imageshack.us/img167/5926/imagemtu7.th.jpg
#include <irrlicht.h>
#include <sqlite3.h>
using namespace irr;
#include "funcoes.h"
using namespace core;
using namespace scene;
using namespace video ...
- Wed Aug 13, 2008 7:22 pm
- Forum: Beginners Help
- Topic: convert stringw to const char
- Replies: 4
- Views: 2008