Download
(3Kb)
Download
Updated: 07-18-18 01:29 AM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Shadows of Argus (7.3.0)
Tomb of Sargeras (7.2.0)
Return to Karazhan (7.1.5)
Legion (7.0.3)
Updated:07-18-18 01:29 AM
Created:02-02-10 10:42 AM
Downloads:32,063
Favorites:114
MD5:
Categories:Action Bar Mods, Miscellaneous

ncHoverBind  Popular! (More than 5000 hits)

Version: 1.4.2b
by: nightcracker, Coote

Now maintained by TMcMahon51. See thread here.


ncHoverBind is a simple addon that does one thing: binding buttons on mouseover. You can mouse over actionbuttons, spells in the spellbook and macro's in the macro pane and bind them while hovering. You can bind keys, mousebuttons 4 and 5 and the scrollwheel with this addon. If you made a mistake in binding, you can just press "Discard" and your old bindings are loaded. Real simple!


Usage:
Download and install. To start use either /hb or /hoverbind. Hover over buttons, spells or macro's and press a key, scroll with the mouse or press mousebutton 4 or 5. After you've bound your spell/items/macro's press "Save bindings" and your done!
If you use HealBot, use /hvb instead.

Upcoming features:
- Items
Suggest features!

Credits:
FatalEntity

1.4.2b
--
Bug fix for additional macros

1.4.2
--
TOC bump for Legion

1.4.1
--
6.1 TOC Bump

1.4.0
--
Updated for WoW 6.0 and Warlords of Draenor

1.3.1
--
5.4 .TOC bump

1.3.0
--
MoP compatibility.
.TOC bump

1.2.2
--
Added check to avoid interference with HealBot.

1.2.1
--
.TOC bump
Should be mostly error free now.

1.2.01
--
Reuploaded as .zip. Sorry to any MMO-Minion users, was unaware it couldn't handle .rar files.

1.2
--
Fixed Spellbook binding.
Added in Networm's fixes.

1.1
--
Fixed the keybinding mechanic so it correctly binds to the "hidden" keybinds. Also works on pet and shapeshift buttons now.
Optional Files (0)


Post A Reply Comment Options
Unread 09-16-12, 11:28 AM  
Burnum
A Defias Bandit
 
Burnum's Avatar

Forum posts: 2
File comments: 81
Uploads: 0
I can't figure out how this works, or even if it works. I get the save or discard thing on /hb but that is all it ever does. perhaps the current and the other version you linked do not work yet.
Or this never worked with Bartender4?

I love the idea! the way Bliz still makes us go to some scroll forever maybe you will find what you need key-bind list, if we want to do anything, is just stupid.

Thanks for your effort!
Report comment to moderator  
Reply With Quote
Unread 09-16-12, 12:42 PM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
Originally Posted by Burnum
I can't figure out how this works, or even if it works. I get the save or discard thing on /hb but that is all it ever does. perhaps the current and the other version you linked do not work yet.
Or this never worked with Bartender4?
TBH, I have never tested it with BT4, nor have I ever used it with BT4 in the past, since BT has nearly the same function built in. It'll be about 2 weeks before I start playing again to be able to really test it, though.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 09-16-12, 03:41 PM  
Burnum
A Defias Bandit
 
Burnum's Avatar

Forum posts: 2
File comments: 81
Uploads: 0
BT4 has nearly the same function? Hmmm I have not found that, I'll have to investigate further.

-- Update

Wow, i'm blind! big button in the main UI. I guess I was expecting to see something in the LDB menu flyout.

Originally Posted by TMcMahon51
Originally Posted by Burnum
I can't figure out how this works, or even if it works. I get the save or discard thing on /hb but that is all it ever does. perhaps the current and the other version you linked do not work yet.
Or this never worked with Bartender4?
TBH, I have never tested it with BT4, nor have I ever used it with BT4 in the past, since BT has nearly the same function built in. It'll be about 2 weeks before I start playing again to be able to really test it, though.
Last edited by Burnum : 09-16-12 at 03:54 PM.
Report comment to moderator  
Reply With Quote
Unread 11-05-12, 08:55 AM  
Razko
A Defias Bandit
 
Razko's Avatar

Forum posts: 2
File comments: 24
Uploads: 0
This is weird but it seems to "lag" with modifiers sometimes.

What I mean exactly is, if you're trying to hotkey something like say shift+1, and you do it very quickly, it registers only 1 as the bind, not shift+1. Sometimes I can replicate this, sometimes I can't.

I discovered this while just normally binding stuff by the way, so it's not like I was trying extra hard to be too fast. This happened just during normal use.

EDIT:
Figured it out. It's because of this:
Code:
bind:SetScript("OnKeyUp", function(self, key) self:Listener(key) end)
It's not uncommon that by the time you release 1, you're not holding shift down anymore, even though you do press shift+1 and the game registers it like that. Changing it to OnKeyDown makes it work flawlessly.

I got another question though: why don't you support middle mouse button binds? And will this addon work with more mouse buttons than 4 and 5, e.g. Naga for example?

EDIT2:

Support for middle mouse button:
1. Comment out this line
Code:
or key == "MiddleButton"
2. Add
Code:
if key == "MiddleButton" then key = "BUTTON3" end
directly above these
Code:
if key == "Button4" then key = "BUTTON4" end
if key == "Button5" then key = "BUTTON5" end
3. Profit
Last edited by Razko : 11-05-12 at 06:46 PM.
Report comment to moderator  
Reply With Quote
Unread 11-15-12, 06:06 AM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
Originally Posted by Razko
Figured it out. It's because of this:
Code:
bind:SetScript("OnKeyUp", function(self, key) self:Listener(key) end)
It's not uncommon that by the time you release 1, you're not holding shift down anymore, even though you do press shift+1 and the game registers it like that. Changing it to OnKeyDown makes it work flawlessly.
Will be done in the next version. Thanks for the input.

Originally Posted by Razko
I got another question though: why don't you support middle mouse button binds? And will this addon work with more mouse buttons than 4 and 5, e.g. Naga for example?
I added in some test support for the Naga, and the Steelseries WoW mouse at one point, though wasn't able to actually test it myself, and never got any responses back from the person supposed to test it. I believe all that is needed is to add up to Button14 or 15 or however are on it, assuming WoW sees those buttons as mouse keys, rather than keyboard binds. If it sees them as binds from the keyboard, rather than the mouse, it should already work by default.


Originally Posted by Razko
I got another question though: why don't you support middle mouse button binds? And will this addon work with more mouse buttons than 4 and 5, e.g. Naga for example?
I'm not entirely certain why it was never supported, and since I never thought of rebinding the middle mouse button myself, it never occurred to me to change it. Can have that changed in the next version, as well.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Last edited by Coote : 11-15-12 at 06:28 AM.
Report comment to moderator  
Reply With Quote
Unread 01-26-13, 07:42 PM  
natassja72
A Wyrmkin Dreamwalker

Forum posts: 59
File comments: 73
Uploads: 0
I can't thank you enough for this addon! After quitting action bar mods and moving back to default action bars, I had hard time redefining keybinds and messing with keybinds menu and this just saved my sanity
Report comment to moderator  
Reply With Quote
Unread 03-18-13, 07:36 AM  
m97
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Great add-on, exactly what i was looking for, but i found that i can't key bind pet action bar buttons and stances properly, i'm quite new to lua but i managed to fix it (i think?):
replace this:
Code:
else
self.button.bindstring = (spellmacro=="STANCE" and "StanceButton" or "BONUSACTIONBUTTON")..self.button.id
with this:
Code:
elseif spellmacro=="PET" then
	self.button.bindstring = (spellmacro=="PET" and "BONUSACTIONBUTTON")..self.button.id
else
	self.button.bindstring = (spellmacro=="STANCE" and "SHAPESHIFTBUTTON")..self.button.id
this seems to be working so you can use this until someone comes up with a better solution
Last edited by m97 : 03-18-13 at 07:38 AM.
Report comment to moderator  
Reply With Quote
Unread 08-21-13, 05:22 PM  
Xully
A Cyclonian

Forum posts: 44
File comments: 180
Uploads: 0
One question about this lovely addon, does this act like the Blizzard key binding window in a way that if I keybind things then go to a different computer, my keybinding will still be there? or do I need to bring the files/WTF with me like vanilla WoW?
Report comment to moderator  
Reply With Quote
Unread 08-21-13, 06:01 PM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
It uses the in-game binding system, and there is no saved variables. Any keybinds should be saved server-side like they do when you use the Blizzard keybindings menu.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 08-28-13, 11:45 AM  
Xully
A Cyclonian

Forum posts: 44
File comments: 180
Uploads: 0
Originally Posted by Coote
It uses the in-game binding system, and there is no saved variables. Any keybinds should be saved server-side like they do when you use the Blizzard keybindings menu.
This is great Coote, but one thing that I noticed is that if I bind things inside the spellbook, which is one thing that I love about the addon too, for example I bind "stats/mark of the wild" buff inside the spellbook, I don't feel the need to put it in the auction bars. but this doesn't go with me to other computers, if you know what I mean.
Report comment to moderator  
Reply With Quote
Unread 08-28-13, 12:25 PM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
I haven't played since February, so can't exactly test this, but if you copied your bindings over manually, it should all carry over.
Look for bindings-cache.wtf in
World of Warcraft\WTF\Account\ACCOUNTNAME\SERVERNAME\CHARACTERNAME
and make a copy of it.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 11-15-13, 06:48 PM  
Restgamer
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Outdated

Is this addon outdated, ingame addons says so. and i cant get /hb to work ingagme. Please update this addon i really need it!
Report comment to moderator  
Reply With Quote
Unread 11-15-13, 08:54 PM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
I just tested it out, and it works fine for me. I did notice that I screwed up last time I uploaded, though. Rename the folder from ncHoverBind - Copy to just ncHoverBind. If it still doesn't work, then it's probably an issue with the bar mod you're using.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 07-28-14, 04:47 AM  
natassja72
A Wyrmkin Dreamwalker

Forum posts: 59
File comments: 73
Uploads: 0
Fantastic addon!

I've been using it for so long, I run with default action bars so this addon is a bless to bind keys quickly It worked perfectly even before last update
Report comment to moderator  
Reply With Quote
Unread 07-28-14, 05:22 AM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
Re: Fantastic addon!

Originally Posted by natassja72
I've been using it for so long, I run with default action bars so this addon is a bless to bind keys quickly It worked perfectly even before last update
I just bumped the TOC up to keep it clean in the addon panel. Not everybody likes having to load "Out of Date" addons.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: