What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

KeyboardManager doesn't work for me?

Inrego

New Member
Joined
Feb 7, 2010
Messages
2,765
Reaction score
71
I was making some profiles that uses KeyboardManager.KeyUpDown or KeyboardManager.PressKey and KeyboardManager.ReleaseKey but none of them seemed to work so I decided to try them out in HBconsole.
As an example I tried
Code:
KeyboardManager.KeyUpDown('4');
but that did nothing. Also tried profiles that uses it which works for other ppl, but it still does nothing here. I've tried setting my keyboard layout to enUS on WoW and HB but still no result.

Any ideas?
 
PHP:
KeyboardManager.KeyUpDown((Char)System.Windows.Forms.Keys.D4);

Better ?
 
Exactly what button should that press? I better bind something to it so I know if it'll work.
 
That's the number 4 on the top of your keyboard.

Numpad 4 is like Num4 or something...
You really need to get Visual C# express dude.
It's very lightweight but you can still see what objects/methods are available to you.
 
I just give you a way to resolve your issue.
Keys is an enumeration, just search a little bit on MSDN.
 
Anyway - that line did nothing too. I just copied it into HBconsole.
 
After tried on my account with HB Console, it works great.
Be sure you have something to bind on the 4 key, or try this to jump :

PHP:
KeyboardManager.KeyUpDown((Char)System.Windows.Forms.Keys.Space);
 
Also nothing. Let me try with a clean HB install.

EDIT: Still nothing.
 
Last edited:
Very strange... Honestly, I don't know why it doesn't work for you :s
 
Back
Top