| | |
| | | public void PressKey(bool pressLeftControl, bool pressRightControl, bool pressLeftShift, bool pressRightShift, bool pressLeftAlt, bool pressRightAlt, bool pressLeftGUI, bool pressRightGUI, params HIDCode[] keys) |
| | | { |
| | | PutDown(pressLeftControl, pressRightControl, pressLeftShift, pressRightShift, pressLeftAlt, pressRightAlt, pressLeftGUI, pressRightGUI, keys); |
| | | Thread.Sleep(100); |
| | | Thread.Sleep(RandomUtils.KeyPressDuration); |
| | | PutDown(false, false, false, false, false, false, false, false); |
| | | Thread.Sleep(100); |
| | | Thread.Sleep(RandomUtils.KeyPressDuration); |
| | | } |
| | | |
| | | /// <summary> |