- Moderator
- #101
here is a .diff and compiled version of the plugin addressing some of the issues mentioned earlier..
btw, can anyone tell me what should i do in the skin to get support for new sms keyboard? i noticed that black&white does not support sms keyboard and neither the old keyboard doesn't show when called in code in "new style":
this doesnt work in black&white.. works fine when called like this:
i'venoticed this behavior both in global search and worldmap (both using new method)..
btw, can anyone tell me what should i do in the skin to get support for new sms keyboard? i noticed that black&white does not support sms keyboard and neither the old keyboard doesn't show when called in code in "new style":
VirtualKeyboard keyboard = new VirtualKeyboard();
keyboard.Init();
GUIWindowManager.Replace((int)GUIWindow.Window.WINDOW_VIRTUAL_KEYBOARD, (GUIWindow)keyboard);
this doesnt work in black&white.. works fine when called like this:
VirtualKeyboard keyboard = (VirtualKeyboard)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_VIRTUAL_KEYBOARD);
i'venoticed this behavior both in global search and worldmap (both using new method)..