Hi, I am new to this Forum


I read lots of guides to Autohotkey


but

I did put in a script for wow but when I start the script it doesnt do anything



I start wow with both accounts

then start ahk the script is loading

it tells me Preparing to find your main and clone windows..



after that my main windows pops up. then nothing


it should open my clone window and minimise all but id doesnt do that



(the scipt is just from the forum)


What do I do wrong?


an advise would be appreciated

;
; Wow Duel Account Helper Version: .02a
; Language: English
; Platform: AutoHotkey Script
; Author: Sorn, Eddited and updated by Doc.
; NOTES: Written for the Duel-Boxing.com forums, Send PM or post in the Autohotkey thread for assistance or suggestions
;
; Script Function:
; Allows you to play multiple copies of WOW at the same time
;

;Tell user what is about to happen
SplashTextOn, 325, , Preparing to find your Main and Clone windows of WoW.
Sleep, 2000
SplasHtextoff

;Grab unique window ID's
WinGet, wowid, List, World of Warcraft


; Minimize All WOW windows
WinMinimize, ahk_id %wowid1%
WinMinimize, ahk_id %wowid2%
;WinMinimize, ahk_id %wowid3%
;WinMinimize, ahk_id %wowid4%
;WinMinimize, ahk_id %wowid5%

;Determine Main and Clone Windows
WinActivate, ahk_id %wowid1%


;*** Special Functions ***
;*** Turn AHK on and Off ingame by presing ], ***

#IfWinActive, World of Warcraft
~]::Suspend, on
~::Suspend, off


;*** Special Functions ***



; *******************
; *** Hotbars 1-0 ***
; *******************
#IfWinActive, World of Warcraft
~1::
ControlSend,,{1 down}{1 up}, ahk_id %wowid2%
ControlSend,,{1 down}{1 up}, ahk_id %wowid3%
.......
......
{
ControlSend,,{Alt down}{= down}{= up}{Alt up}, ahk_id %wowid2%
ControlSend,,{Alt down}{= down}{= up}{Alt up}, ahk_id %wowid3%
ControlSend,,{Alt down}{= down}{= up}{Alt up}, ahk_id %wowid4%
ControlSend,,{Alt down}{= down}{= up}{Alt up}, ahk_id %wowid5%
}


; ROW 2


MouseInRange(minx,maxx,miny,maxy)
{
MouseGetPos, x, y
If (y >= miny) and (y <= maxy) and (x >= minx) and (x <= maxx)
Return 1
Return 0
}



; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs