RohesKätzchen
RohesKätzchen
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
thx
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
how do i close a tread?
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
hmm okay thnaks
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
it also has mouse features, i already implemented left and right click, but i cant figure out how to do the middle click
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
hmmm i already read the whole thing :(
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
english isnt y first language but i can try my best come in a channel
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
if i can convince you are you helping me?
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
i need to do it for a school project...
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
i hope this kind of programm isnt considered as bad im not trying to cause any harm :)
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
nope just in general all prgramms, it was back then just to automine in a game but i dont play that much anymore so.
29 replies
CC#
Created by RohesKätzchen on 5/28/2024 in #help
✅ Need help with with Input Simulator
im writing a programm that performs a string of actions like a makro
29 replies
CC#
Created by RohesKätzchen on 2/6/2024 in #help
Library to send mouse and key Inputs
i just noticed that whenn i try it in a game for example minecraft the key actually gets held down so i can walk, but when i try it in a text Programm it only gets a single input
10 replies
CC#
Created by RohesKätzchen on 2/6/2024 in #help
Library to send mouse and key Inputs
private async void HoldDown()
{
this.ActiveControl = textBox1;

inputSimulator.Keyboard.Sleep(2000).KeyDown(VirtualKeyCode.VK_D);
await Task.Delay(2000);
inputSimulator.Keyboard.KeyUp(VirtualKeyCode.VK_D);
}
private async void HoldDown()
{
this.ActiveControl = textBox1;

inputSimulator.Keyboard.Sleep(2000).KeyDown(VirtualKeyCode.VK_D);
await Task.Delay(2000);
inputSimulator.Keyboard.KeyUp(VirtualKeyCode.VK_D);
}
i tried doing it like this but this also doesnt work
10 replies
CC#
Created by RohesKätzchen on 2/6/2024 in #help
Library to send mouse and key Inputs
hey i still couldnt figure out how to hold the key down, do you have an idea?
10 replies
CC#
Created by RohesKätzchen on 2/6/2024 in #help
Library to send mouse and key Inputs
i cant get the key to be held down, do you know what i have done wrong?
InputSimulator inputSimulator = new InputSimulator();

private void button1_Click(object sender, EventArgs e)
{
this.ActiveControl = textBox1;

inputSimulator.Keyboard.Sleep(2000)
.KeyDown(VirtualKeyCode.VK_D)
.Sleep(2000)
.KeyUp(VirtualKeyCode.VK_D);

MessageBox.Show("Done");
}
InputSimulator inputSimulator = new InputSimulator();

private void button1_Click(object sender, EventArgs e)
{
this.ActiveControl = textBox1;

inputSimulator.Keyboard.Sleep(2000)
.KeyDown(VirtualKeyCode.VK_D)
.Sleep(2000)
.KeyUp(VirtualKeyCode.VK_D);

MessageBox.Show("Done");
}
10 replies
CC#
Created by RohesKätzchen on 2/6/2024 in #help
Library to send mouse and key Inputs
thanks this might be just what i need.
10 replies
CC#
Created by RohesKätzchen on 2/6/2024 in #help
Library to send mouse and key Inputs
A programm that can record mouse and keybord strokes and replay them, i call it a macro recorder, i have the recording part done now i need to do the play part
10 replies
CC#
Created by RohesKätzchen on 1/23/2024 in #help
✅ Global keypress Simulation?
now i need to figure out how to get the key to be held down, bc i think if i simulated the held down keypress by using timers and repeating the input it wouldnt be the same as actually the held down key
15 replies
CC#
Created by RohesKätzchen on 1/23/2024 in #help
✅ Global keypress Simulation?
No description
15 replies
CC#
Created by RohesKätzchen on 1/23/2024 in #help
✅ Global keypress Simulation?
thanks, this might be what i need, im going to test some things with it.
15 replies