Quote Originally Posted by Kfunk
Hello,

I'm working on a warrior/priest dual box effort, with the intent to group effectively. I would most like to work out a macro where I can, on the warrior, mouse over a player, or otherwise select them without actually retargetting from a mob. And from that action, have my priest heal the selected character.

Unfortunately, there is no [target=party1focus] command, which would be a perfect 2 button solution,

/focus mouseover on the warrior

/cast [target=party1focus] heal on the priest


Any ideas for a workaround, or experience in general playing a tank/healer dual boxing?
Use the mouseover. I use a macro like this to cure poison and disease just by mousing over and pressing a button:

[code:1]
/cast [target=mouseover,nomodifier] Cleanse Poison
/cast [target=mouseover,modifier:ctrl] Cleanse Disease
/cast [target=mouseover,modifier:alt] Purge
/cast [target=player,nomodifier] Cleanse Poison
/cast [target=player,modifier:ctrl] Cleanse Disease
[/code:1]

You could just as easily do this with a heal:

[code:1]
/cast [target=mouseover] Renew
[/code:1]

The other way to do what you are asking is to write a macro for that player, specifically, and use the /targetlasttarget command:

[code:1]
/target Player1
/cast Greater Heal
/targetlasttarget
[/code:1]

This will target the character named "Player1", cast the heal, then go back to whatever target you were on before, so you don't have to find the mob you were trying to kill. Hope this helps.