This is the original script:
-----
IfWinExist Analook
{
WinActivate
}
else
{
Run C:\Vleermuisbatch\AnalookW\AnalookW.exe
WinWait Analook
WinActivate
}
Send ^n-----
Posted 03 July 2012 - 08:18 AM
IfWinExist Analook
{
WinActivate
}
else
{
Run C:\Vleermuisbatch\AnalookW\AnalookW.exe
WinWait Analook
WinActivate
}
Send ^n-----
Posted 03 July 2012 - 08:22 AM
if not A_IsAdmin
{
run *runAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+
ExitApp
}
IfWinExist Analook
WinActivate
else
{
Run C:\Vleermuisbatch\AnalookW\AnalookW.exe
WinWait Analook
WinActivate
}
Send ^n
ExitApp
Posted 03 July 2012 - 08:58 AM
Posted 03 July 2012 - 10:20 AM
Posted 03 July 2012 - 11:13 AM
Posted 03 July 2012 - 01:12 PM
!z:: Send #l returnAnother big issue that I am facing is that my scripts containing Winmove command have stopped working. I have raised it yesterday in the support forum with the title "Winmove command not working in AHK with Window 7".
Posted 03 July 2012 - 02:48 PM
!z:: Send #l [color=#FF0000]msgbox %A_ThisHotkey% pressed[/color] returnTo determine if the hotkey is firing at all or maybe it's something else.
Posted 04 July 2012 - 03:49 AM
Posted 04 July 2012 - 04:33 AM
#z::send 20% MarkupIt keeps saying there is a % misssing :x
Posted 04 July 2012 - 04:37 AM
#z::send % "20% Markup"
Posted 04 July 2012 - 06:55 AM
if not A_IsAdmin
{
run *runAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+
ExitApp
}And try it again.
Posted 04 July 2012 - 07:20 AM
#SingleInstance,Force
#NoEnv
if not A_IsAdmin
{
run *runAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+
ExitApp
}
; To lock the computer
;#IfWinActive A
!z::
Send #l
;msgbox %A_ThisHotkey% pressed
Sleep 500
returnPosted 04 July 2012 - 07:31 AM
Send % "#l"
Posted 04 July 2012 - 08:27 AM