MicroMenu
Shows the micro menu and game menu in a clickable broker tooltip. Also shows your fps and latency.
Broker_MicroMenu does not provide it’s own display, you will need a LDB-based display addon.
Known Problems:
When opening the spellbook via Broker MicroMenu, the spells can not be clicked. You can still drag them to your actionbars. This is a problem related to secure code and can not be fixed because of how the data broker system works. (Just use your hotkey for the spellbook if you want to click the spells there).
-
View User Profile
-
Send Message
Posted Nov 1, 2011Do you have the nolib version of Broker_MicroMenu?
-
View User Profile
-
Send Message
Posted Sep 25, 2011-
View User Profile
-
Send Message
Posted Oct 31, 2011This can not be fixed because of how data broker works. Use a key binding for your spell book if you want to click the spells directly in the spell book instead of dragging them to an action bar.
-
View User Profile
-
Send Message
Posted Aug 30, 2011I have knock something up can display Dungeon journal but it can't close window and display the small icon...
ps: I don't know anything about lua so save your file and pray to not have a blue screen of the death :p, finaly i've try that only on a french version.
Add this text at line 229:
local y, x = tooltip:AddLine()
tooltip:SetCell(y, 1, "", myProvider)
tooltip:SetCell(y, 2, ENCOUNTER_JOURNAL)
tooltip:SetLineScript(y, "OnMouseUp", MouseHandler, function() EncounterJournal_OpenJournal(nil) end)
-
View User Profile
-
Send Message
Posted Oct 31, 2011Added in v1.3.
-
View User Profile
-
Send Message
Posted Aug 20, 2011Also on a side not the icon for guild on the game button displays your tabard, that would be cool to update this also.
-
View User Profile
-
Send Message
Posted Jun 20, 2011local function UpdateText()
local fps = floor(GetFramerate())
local bandwidthIn, bandwidthOut, latencyHome, latencyWorld = GetNetStats()
local fpsColor, latencyHomeColor, latencyWorldColor
if fps > 30 then
fpsColor = "|cff00ff00"
elseif fps > 20 then
fpsColor = "|cffffd200"
else
fpsColor = "|cffdd3a00"
end
if latencyHome < 300 then
latencyHomeColor = "|cff00ff00"
dataobj.icon = path.."green.tga"
elseif latencyHome < 500 then
latencyHomeColor = "|cffffd200"
dataobj.icon = path.."yellow.tga"
else
latencyHomeColor = "|cffdd3a00"
dataobj.icon = path.."red.tga"
end
if latencyWorld < 300 then
latencyWorldColor = "|cff00ff00"
dataobj.icon = path.."green.tga"
elseif latencyWorld < 500 then
latencyWorldColor = "|cffffd200"
dataobj.icon = path.."yellow.tga"
else
latencyWorldColor = "|cffdd3a00"
dataobj.icon = path.."red.tga"
end
dataobj.text = string.format("H:%s%4i|r ms W:%s%4i|r ms %s%3i|r fps", latencyHomeColor, latencyHome, latencyWorldColor, latencyWorld, fpsColor, fps )
end
-
View User Profile
-
Send Message
Posted Oct 31, 2011Added in v1.3.
-
View User Profile
-
Send Message
Posted May 30, 2011-
View User Profile
-
Send Message
Posted May 4, 2011-
View User Profile
-
Send Message
Posted May 10, 2011-
View User Profile
-
Send Message
Posted May 3, 2011-
View User Profile
-
Send Message
Posted Apr 30, 2011-
View User Profile
-
Send Message
Posted May 1, 2011If you don't trust the line counters, Line 238 should look like this:
tooltip:SetCell(y, 2, GameMenuButtonSoundOptions:GetText())
Make sure you delete that line and the lines immediately above and below.
-
View User Profile
-
Send Message
Posted Apr 26, 20111. Open Broker_MicroMenu.lua in text editor
2. Remove lines 237-239
3. Save and exit
Cause: Blizzard move where the "Sound" option is. It's under "Options" now.
-
View User Profile
-
Send Message
Posted Apr 28, 2011-
View User Profile
-
Send Message
Posted Apr 26, 2011-
View User Profile
-
Send Message
Posted Feb 22, 2011-
View User Profile
-
Send Message
Posted Feb 16, 2011-
View User Profile
-
Send Message
Posted Feb 16, 2011