http://www.dual-boxing.com/showpost....4&postcount=11

My AOE heals look like this

Code:
<Hotkey F3>
	<SendLabel w1, w2, w3, w4>
		<Key F3>
		
<Hotkeyup F3>
	<SendLabel w1, w2, w3, w4>
			<Clickmouse LButton>
		<RestoreMousePos>
You're sending your commands to window names {wow1-wow4} instead of to the labels {w1-w4}. Use the labels.

If you want the broadcasting separated, then don't define it again. You already have the OEM3 set up in your key definitions

Code:
//-----------------------------------------------------------
 // BROADCAST MOUSE CLICKS. HOLD DOWN OEM3 (ON U.S. KEYBOARDS,
 // THAT'S THE SQUIGGLE KEY IN UPPPER LEFT CORNER) WHEN YOU 
 // WANT TO BROADCAST.
 //-----------------------------------------------------------
 <UseKeyAsModifier Oem3>
 <Hotkey ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
 <SendLabel w1, w2, w3, w4> 
 <ClickMouse %TriggerMainKey%>
You should just have to press Z, hold OEM3, click your mouse and release the OEM3 key.