Jmanuel Posted April 4, 2012 Share Posted April 4, 2012 Is anyone having issues while using ALT TAB I want to be able to go to the previous window, but it's not working. It actually just minimize and maximize the windows just like pressing GUI d Any Ideas Quote Link to comment Share on other sites More sharing options...
angryxbit Posted April 4, 2012 Share Posted April 4, 2012 Is anyone having issues while using ALT TAB I want to be able to go to the previous window, but it's not working. It actually just minimize and maximize the windows just like pressing GUI d Any Ideas Does this continue to happen when you boot in safe mode? Quote Link to comment Share on other sites More sharing options...
Jmanuel Posted April 4, 2012 Author Share Posted April 4, 2012 Does this continue to happen when you boot in safe mode? Yes it also happens in safe mode. I tried using different combination with ALT, and they work fine. I have the first board not the red one. Quote Link to comment Share on other sites More sharing options...
angryxbit Posted April 5, 2012 Share Posted April 5, 2012 Yes it also happens in safe mode. I tried using different combination with ALT, and they work fine. I have the first board not the red one. Try to reset all of the key bindings. I don's understand what you mean by "not the red one." My understanding is that you only see the active window when you press ALT+TAB? Quote Link to comment Share on other sites More sharing options...
Darren Kitchen Posted April 6, 2012 Share Posted April 6, 2012 What version of the duck encoder are you using? IIRC ALT TAB should work since 1.0. Quote Link to comment Share on other sites More sharing options...
Jmanuel Posted May 1, 2012 Author Share Posted May 1, 2012 What version of the duck encoder are you using? IIRC ALT TAB should work since 1.0. I forgot about my rubber ducky for a minute :D I'm using the Online Duck encoder. Quote Link to comment Share on other sites More sharing options...
iamk3 Posted May 9, 2012 Share Posted May 9, 2012 I don's understand what you mean by "not the red one." The original ducky has a green board... Quote Link to comment Share on other sites More sharing options...
Mr-Protocol Posted May 9, 2012 Share Posted May 9, 2012 The original ducky has a green board... Original Board: Teensy 2.0 http://www.pjrc.com/teensy/ Irongeek's info on teensy http://www.irongeek.com/i.php?page=security/programmable-hid-usb-keystroke-dongle Code for some basic stuff (via Irongeek, modified the PressAndRelease function) void CommandAtRunBar(char *SomeCommand) { Keyboard.set_modifier(128); //Windows key Keyboard.set_key1(KEY_R); // use r key Keyboard.send_now(); // send strokes Keyboard.set_modifier(0); //prep release of control keys Keyboard.set_key1(0); //have to do this to keep it from hitting key multiple times. Keyboard.send_now(); //Send the key changes delay(500); Keyboard.print(SomeCommand); Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); } void PressAndRelease(int KeyCode,int KeyCount,int Time_Hold) { int KeyCounter=0; for (KeyCounter=0; KeyCounter!=KeyCount; KeyCounter++) { Keyboard.set_key1(KeyCode); // use r key Keyboard.send_now(); // send strokes digitalWrite(ledPin, HIGH); delay(Time_Hold); Keyboard.set_key1(0); Keyboard.send_now(); // send strokes digitalWrite(ledPin, LOW); } http://www.pjrc.com/teensy/usb_keyboard.html Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.