I was trying to get creative with an AHK script, but that doesn't appear to work either. I did the following in an AHK script:
~c::
Process, Exist, nestopia.exe
If (ErrorLevel != 0) ; If it is running
{
Send {Click}
}
return
So every time you press my player 1 button 1 (which is the keyboard letter 'c') it was supposed to send a left click at the mouses current position. But only do this when nestopia is running. Unfortunately, this did not work. For some reason this script does work, just not in Nestopia. Like if I press 'c' in notepad (with Nestopia running in the background) it will still type a 'c' and the cursor will click wherever the mouse is currently posistioned. But when nestopia is in focus, this simulated left click doesn't register for some reason. So yeah, I have no idea why that doesn't work, but I'm back to square one. If anyone has any creative ideas of how to correct this, please let me know!