So, after about 5 months of inactivity I've decided to reactivate my account.
Here's my problem.
I've always used an AHK script to replicate keypresses. This used to work almost perfect and I've never had any problems with it until now.
Here's the script I used:
#ifWinActive World of Warcraft
{
$&::
Loop
{
if not GetKeyState("&", "P")
break
Send &
sleep 1
}
return
$é::
Loop
{
if not GetKeyState("é", "P")
break
Send é
sleep 1
}
return
$"::
Loop
{
if not GetKeyState(""", "P")
break
Send "
sleep 1
}
return
$(::
Loop
{
if not GetKeyState("(", "P")
break
Send (
sleep 1
}
return
$v::
Loop
{
if not GetKeyState("v", "P")
break
Send v
sleep 1
}
return
~Enter::Suspend, toggle
~Esc::Suspend, off
~r::
IfEqual, A_IsSuspended, 1, Return
Suspend, on
return
}
The only thing that has changed between now and 5 months ago is my OS. I've upgraded to Windows 7 Ultimate, but as far as I can look up on Google there have been no known problems between ahk scripts and Win 7.
So if anyone has any idea's on how to fix this, please do not hesitate to post.
Edit: Post can be deleted, the excellent people at AHK found my problem. (Set admin priviliges to autohotkey.exe and make sure the right executable is used.)