You mean something like this?
I made a AHK script for Black Ops (SP and MP) which does the same thing like in the screenshot.
Virus Scans:
VirusTotal - Free Online Virus, Malware and URL Scanner
BlackOpsBorderRemove.rar - Jotti's malware scan
I have absolutely NO idea why there are so many false positives! If you don't trust it, save this as a .ahk file and run it with AutoHotKey:
Code:
#SingleInstance force
CurrentState = 0
Process, wait, BlackOpsMP.exe, 0.1
NewPID = %ErrorLevel% ; Save the value immediately since ErrorLevel is often changed.
if NewPID = 0
{
Process, wait, BlackOps.exe, 0.1
NewPID = %ErrorLevel%
if NewPID = 0
{
MsgBox Could not find Black Ops!
ExitApp
}
}
WinActivate, ahk_pid %NewPID%
WinSet, Style, -0xC00000, ahk_pid %NewPID%
WinSet, Style, -0x800000, ahk_pid %NewPID%
WinMinimize, ahk_pid %NewPID%
sleep 200
WinRestore, ahk_pid %NewPID%
while 1
{
sleep 100
IfWinNotExist, ahk_pid %NewPID%
ExitApp
}
~NumLock::Suspend, toggle
$F12::
{
GetKeyState, state, F12, T
if state = D
{
if CurrentState = 0
{
CurrentState = 1
WinActivate, ahk_pid %NewPID%
WinSet, Style, +0xC00000, ahk_pid %NewPID%
WinSet, Style, +0x800000, ahk_pid %NewPID%
WinMinimize, ahk_pid %NewPID%
sleep 200
WinRestore, ahk_pid %NewPID%
}
else
{
CurrentState = 0
WinActivate, ahk_pid %NewPID%
WinSet, Style, -0xC00000, ahk_pid %NewPID%
WinSet, Style, -0x800000, ahk_pid %NewPID%
WinMinimize, ahk_pid %NewPID%
sleep 200
WinRestore, ahk_pid %NewPID%
}
}
else
{
send {F12 down}
send {F12 up}
}
}
Press F12 to toggle this on and off.