Hi, I want to make a batch file that press every second the Alt + F3 combination.
I have no idea how I have to make this, can someone help me?
batch file every second Alt+F3
Moderator: DosItHelp
Re: batch file every second Alt+F3
tomboman wrote:Hi, I want to make a batch file that press every second the Alt + F3 combination.
No way.
tomboman wrote:can someone help me?
Not sure. Have a look at SendKeys in VBScript or JScript. But it's not applicable to a lot of computer games (the developers already know such tricks).
Regards
aGerman
-
- Expert
- Posts: 442
- Joined: 01 Aug 2010 17:13
- Location: Canadian Pacific
- Contact:
Re: batch file every second Alt+F3
It's'a ease'ay...
http://msdn.microsoft.com/en-us/library ... dkeys.aspx
presskey.vbs
DOS:
http://msdn.microsoft.com/en-us/library ... dkeys.aspx
presskey.vbs
Code: Select all
set a=wscript.createobject("wscript.shell")
a.sendkeys "%{F3}"
DOS:
Code: Select all
cscript presskey.vbs //nologo