
Originally Posted by
dubiox
Hi, I have this right now and it seems to work:
Code:
<Hotkey ScrollLockOn LButton>
<If MouseIsOverScreenRect 1980 1250 495 120>
<SendLabel w1, w2, w3, w4, w5>
<ClickMouse LButton>
<Else>
<SendLabel w1>
<ClickMouse>
<EndIf>
But really I want to get rid of the ScrollLock modifier and just use it at all times. What do I put in the else to have hkn just pass the mouse through and not mess with it when outside that region? As written you can't click and drag.
The goal is to pass mouse clicks to the jamba item-use bar for all toons.
To remove the modifier, just remove the ScrollLock in the hotkey.
You are not going to get mouse dragging to work, though. The mouse is going to move window to window very rapidly and complete an entire click {button down, button release}, HotKeyNet does not create multiple functioning pointers that are capable of controlling all the windows exactly at the same time.
I'm not even sure why you'd need dragging in relation to the Jamba Item Bar. If it is configured correctly, whatever you do on the master's bar should be duplicated to the slaves. So if you drag an item off your master's bar, it should go through Jamba's channel and have the slaves also clear the item from their bars.
This is my Jamba Item Use Bar code -
Code:
<Hotkey Oem4>
<If MouseIsOverWindowRect WoW1 1442 920 29 29>
<SendLabel w2, w3, w4, w5>
<Key Oem4>
<SendLabel w1, w2, w3, w4, w5>
<Key Ctrl Numpad1>
<Else If MouseIsOverWindowRect WoW1 1442 952 29 29>
<SendLabel w2, w3, w4, w5>
<Key Oem4>
<SendLabel w1, w2, w3, w4, w5>
<Key Ctrl Numpad2>
<Else If MouseIsOverWindowRect WoW1 1442 983 29 29>
<SendLabel w2, w3, w4, w5>
<Key Oem4>
<SendLabel w1, w2, w3, w4, w5>
<Key Ctrl Numpad3>
<Else If MouseIsOverWindowRect WoW1 1442 1013 29 29>
<SendLabel w2, w3, w4, w5>
<Key Oem4>
<SendLabel w1, w2, w3, w4, w5>
<Key Ctrl Numpad4>
<Else>
<SendLabel w2, w3, w4, w5>
<Key Oem4>
Oem4 is my standard assist key. This is designed so that if my mouse is over the Jamba Item Bar when I press my assist key, the slaves will assist my master {Oem4} and then they will all trigger the hotkey {Ctrl Numpad*} - as assigned through the Jamba Keybindings - to use the item on the bar. I do NOT use simply clicking because that prevents me from being able to move or remove anything from the bar or selectively use something on just the master.
Assign your Item Bar hotkeys under the Jamba section in Keybindings and use HotKeyNet to send the associated key for the region/bar, not mouse passing.
Connect With Us