[Version 1] Alt Tab
#1
Posted 03 April 2012 - 08:31 PM
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
#2
Posted 03 April 2012 - 11:07 PM
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?
#3
Posted 04 April 2012 - 02:07 AM
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.
#4
Posted 04 April 2012 - 09:30 PM
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?
#6
Posted 01 May 2012 - 12:53 AM
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
I'm using the Online Duck encoder.
#7
Posted 08 May 2012 - 11:02 PM
I don's understand what you mean by "not the red one."
The original ducky has a green board...
iamk3 @ irc.hak5.org #hak5
#8
Posted 08 May 2012 - 11:11 PM
Original Board: Teensy 2.0The original ducky has a green board...
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
Mr-Protocol @ irc.hak5.org #hak5
Mr-Protocol @ chat.freenode.org #hak5
I’m just watching a bad dream I never wake up from. -Spike Spiegel

0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users
















