Quote Originally Posted by Cypress View Post

Mouseover I think that will be effective as well. I remember there was a discussion about setting the same group order to slaves as it is to the master( so player is not necessary always on top of group). But for some reason i cant find the posting on that, i think it was an addon that can do that. I don't quite see how to connect the dsp macro to the mouseover heal macro tho
Almost any unit frame addon can set your group order to a static order. I used Pitbull4 which allows you to add the player to the group frame, and then arrange the group frame alphabetically.


Connecting the DPS macro the the heal macro is simply a matter of setting up the script to point to the appropriate macros.

Code:
<Hotkey 2>
    
    <If MouseIsOverWindowRect WoW1 36 57 274 631>
        <SendLabel w2>
			<SaveMousePos>
			<Clickmouse Noclick 60% 60% Norestore>
		            <Key Lctrl 1>
			<Restoremousepos>
		<SendLabel w1, w3, w4, w5>
		<Key 2>
	<Else>
	<SendLabel w1, w2, w3, w4, w5>
		<Key 2>
What this says is -

If, while pressing key 2, my mouse is in this location {the coordinates of my group frames on my tank's screen}, move the mouse over to the same area on my healers screen and send key Lctrl 1 to my healer {Lctrl 1 being simply /cast [target=mouseover] Chain Heal in this case}, and send key 2 to all other WoW windows {being the various spam macros for my tank and DPS}, then move the mouse back {the movement is almost imperceptible}.

If, while pressing 2, my mouse is anywhere else, send key 2 to every WoW window {again, 2 being my normal spam for tank and DPS and my "heal spam"}.