Hi again,,

Just added a really nice couple of script items to help with mouse clicks and such..

First is a script that sends a click command to a specifyed macro or keybind on all 5 clients when i click the middle or 5th mouse buttons..

I use the middle to tell all my shammies to heal my target..(Heal macro is bound on = on my shammies),, while clicking 5th mouse button tells my shammies to heal main(mage)..

Script goes like this>>

;************************************************* ********
; click middle at the current mouse pos:

~Mbutton::
#IfWinActive, World of Warcraft
ControlSend,,{= down}{= up}, ahk_id %wowid1%
ControlSend,,{= down}{= up}, ahk_id %wowid2%
ControlSend,,{= down}{= up}, ahk_id %wowid3%
ControlSend,,{= down}{= up}, ahk_id %wowid4%
ControlSend,,{= down}{= up}, ahk_id %wowid5%
return

~Xbutton2::
#IfWinActive, World of Warcraft
ControlSend,,{- down}{- up}, ahk_id %wowid1%
ControlSend,,{- down}{- up}, ahk_id %wowid2%
ControlSend,,{- down}{- up}, ahk_id %wowid3%
ControlSend,,{- down}{- up}, ahk_id %wowid4%
ControlSend,,{- down}{- up}, ahk_id %wowid5%
return

;*********************************************

;Just cut and paste to the main script above...

The second script that i found and rewrote is to tell AHK to send a specific key command when i click the Left mouse button while it is positioned above a certain location(coordinates).. this allows me to have my shammy Totems and spells on view while on the main(mage) and just roll over the mouse on the picture of that spell and then click it,, this sends a click through AHK to other clients (the shammies) who have their totems or spells allocated to certain numbers on the Numpad1-9..

the action is only executed while the mouse is hovering above a certain coordinates which u specify..

Anyway, im sure u get the idea>> hers the script which u can expand a easily,,(im just starting with this so the script is still a little thin, but it works),, and as above,, just cut and paste top the main script/.

;******************************************

;************************************************* *********

;Coordinats scripted action

~LButton::
; ROW 1
If MouseInRange(812,840,330,350)
{
ControlSend,,9, ahk_id %wowid2%
ControlSend,,9, ahk_id %wowid3%
ControlSend,,9, ahk_id %wowid4%
ControlSend,,9, ahk_id %wowid5%
}

else if MouseInRange(1174,1221,703,751)
Suspend ; SUSPEND

; ROW 2

else
Click
Return

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

; ********************* GOOD LUCK ********************