Jump to content

[Version 1] Alt Tab


Recommended Posts

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?

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

  • 4 weeks later...

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...