Uploaded July 2024 | Updated September 2026, 1 week ago
I wanted to create this camera recording overlay as a green screen, but didn't like the quality. Transparent images linked below that can be applied directly over video to maintain quality.
drive.google.com/drive/folders/1OJI7n_tG20YQCohkc3Zd7-svBCJIxd_U?usp=sharing
#videoeditingresources
P088
I wanted to create this camera recording overlay as a green screen, but didn't like the quality. Transparent images linked below that can be applied directly over video to maintain quality.
drive.google.com/drive/folders/1OJI7n_tG20YQCohkc3Zd7-svBCJIxd_U?usp=sharing
#videoeditingresources
P088







![C# - Simulate mouse clicks with SendInput (codeproject implementation)
How I simulate left and right mouse clicks in Windows apps with C# SendInput function. A download from codeproject.com is used to build functions for LeftClick and RightClick.
InputSender Download:
https://www.codeproject.com/Articles/5264831/How-to-Send-Inputs-using-Csharp
C# Automation Playlist:
https://youtube.com/playlist?list=PLAW4P1Sb_oJbIJIQd8-HPmsVUE6Ez6NFL&si=3rb4bQHNPmHYsaXs
#csharp
private void LeftClick(int x, int y)
{
InputSender.SetCursorPosition(x, y);
InputSender.SendMouseInput(new InputSender.MouseInput[]
{
new InputSender.MouseInput
{
dwFlags = (uint)InputSender.MouseEventF.LeftDown
}
});
Thread.Sleep(100);
InputSender.SendMouseInput(new InputSender.MouseInput[]
{
new InputSender.MouseInput
{
dwFlags = (uint)InputSender.MouseEventF.LeftUp
}
});
} C# - Simulate mouse clicks with SendInput (codeproject implementation)](https://i.ytimg.com/vi/qv1QcXO0v-M/mqdefault.jpg)


