| Updated: | 11-17-10 11:48 AM |
| Created: | 02-02-10 09:42 AM |
| Downloads: | 10,524 |
| Favorites: | 83 |
| MD5: |

File Name |
Version |
Size |
Author |
Date |
1.2 |
4kB |
nightcracker |
11-14-10 12:30 PM |
|
1.1 |
3kB |
nightcracker |
02-11-10 11:02 PM |
|
1.0 |
2kB |
nightcracker |
02-02-10 09:42 AM |
![]() |
Comment Options |
|
|
|
|
A Fallenroot Satyr
Forum posts: 23
File comments: 46
Uploads: 0
|
Thanks for changing to zip.
|
|
|
|
|
|
|
Could you please reupload the addon as a *.zip file? MMOUI-Minion can't handle *rar files.
Would be nice... ![]() |
|
|
|
|
|
|
|
Thanks for update!
Have a nice day Slaxi
__________________
Gnampf! |
|
|
|
|
|
||
|
Re: SpellBook Spells
Update should be going up in under an hour.
__________________
![]() "This is the fifteen-thousandth four hundredth and ninety-eighth occurence". |
||
|
|
|
|
|
|
SpellBook Spells
If you want to Fix it for SpellBook Spells, on line 52 change to:
lua Code:
__________________
My oUF Layout: oUF Lumen |
|
|
|
|
|
|
|
Code:
bind:SetScript("OnKeyUp", function(self, key) self:Listener(key) end)
bind:SetScript("OnMouseUp", function(self, key) self:Listener(key) end)
Code:
-- chaged the following two Script from OnKeyUp to OnKeyDown to fix can't bind a combine key such as SHFT+T, ALT+SHIFT+Q
bind:SetScript("OnKeyDown", function(self, key) self:Listener(key) end)
bind:SetScript("OnMouseDown", function(self, key) self:Listener(key) end)
Code:
-- fix can't bind anykey when a macro isn't available
-- must comment the line in OnHide function
-- such as you are Fury Warrior and you have a macro
-- #showtooltip /cast BladeStorm
-- you can't bind any key to this button because OnHide is not called forever
bind.button.bindings = {GetBindingKey(bind.button.bindstring)}
GameTooltip:SetScript("OnHide", function(self)
self:SetOwner(bind, "ANCHOR_NONE")
Code:
function bind:Listener(key)
-- fix bind the SCREENSHOT key, now press SCREENSHOT key will take a screen shot
-- GetBindingFromClick
if GetBindingByKey(key) == "SCREENSHOT" then
RunBinding("SCREENSHOT");
return
end
-- change behavior to bind only one key for one button
if #self.button.bindings > 0 then
for i = 1, #self.button.bindings do
SetBinding(self.button.bindings[i])
end
self:Update(self.button, self.spellmacro)
if self.spellmacro~="MACRO" then GameTooltip:Hide() end
end
Code:
if not bind.enabled then
bind:Activate()
StaticPopup_Show("KEYBIND_MODE")
-- fix issue that enter /hb it doesn't display bind tooltip when mouse is over action button
local stance = ShapeshiftButton1:GetScript("OnClick")
local pet = PetActionButton1:GetScript("OnClick")
local button = SecureActionButton_OnClick
local focus = GetMouseFocus()
if focus.IsProtected and focus.GetObjectType and focus.GetScript and focus:GetObjectType()=="CheckButton" and focus:IsProtected() then
local script = focus:GetScript("OnClick")
if script==button then
bind:Update(focus)
elseif script==stance then
bind:Update(focus, "STANCE")
elseif script==pet then
bind:Update(focus, "PET")
end
end
end
|
|
|
|
|
|
||
__________________
![]() "This is the fifteen-thousandth four hundredth and ninety-eighth occurence". |
||
|
|
|
|
|
|
Existing binds do work, however binding from the "new" spellbook does not.
An update would be much appreciated ![]() |
|
|
|
|
|
|
|
A Defias Bandit
Forum posts: 2
File comments: 13
Uploads: 0
|
Still works in 4.01 !!
![]() Long live Hoverbind! |
|
|
|
|
|
|
Great,
thank you for this! Have a nice day Slaxi
__________________
Gnampf! |
|
|
|
|
|
|
|
Heya nightcracker, I'm going to be using your mod for my bindings and I have a question. When I bind a spell from my spellbook (let's say, Arcane Shot Rank 1), once I gain a new rank of the spell (like rank 2) will the binding still be attached to Rank 1 or switch over automatically to Rank 2? Cause it would be a bit annoying to rebind each spell every time I gain a new rank.
__________________
|
|
|
|
|
|
|
|
Very good job nightcracker, such a useful yet simple addon !
@ Blizzart How to do it yourself : 1. Line 187 : Edit this line to Code:
-- or key == "MiddleButton" Code:
if key == "MiddleButton" then key = "BUTTON3" end |
|
|
|
|
|
|
|
n1, I have search a new addon like this.
But one thing is there still, the"middle mouse button" doesnt work to set. It will be nice if you can set this button for setable ![]() |
|
|
|
![]() |