I search where is the code for when a player press : 1,2,3 (&,é,"), the taskbar change the "page" to 1/2/3.. Because when I press 1/2/3, nothing happen and the "page" of the taskbar don't switch.
Code:
#ifdef __Y_INTERFACE_VER3
DWORD dwHotkey1[10] = { '1', '2', '3', '4', '5', '6', '7', '8', '9', '0' };
DWORD dwHotkey2[10] = { 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79 };
if( g_Option.m_nInterface == 2 )
dwHotkey = dwHotkey1;
else
dwHotkey = dwHotkey2;
#else //__Y_INTERFACE_VER3
DWORD dwHotkey1[10] = { 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79 };
dwHotkey = dwHotkey1;
#endif //__Y_INTERFACE_VER3
Sry for my bad english i'm French.
Thank you.






