View Single Post
04-19-24, 06:47 PM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,936
Just in case you didn't figure it out already
appears they changed the parameters
This now works with nUI's top of the screen micromenu with the HelpTip showing below pointing up.
As you can see in my case I test for the system to work with the ones I need to change.
You might have to debug your way through to identify what system you are interested in.

Lua Code:
  1. hooksecurefunc(HelpTip,"Show",
  2.     function(parent,info,relativeRegion)
  3.         for frame in HelpTip.framePool:EnumerateActive() do
  4.             if frame.info.system == "MicroButtons" then
  5.                 frame.info.targetPoint = HelpTip.Point.BottomEdgeCenter
  6.             end
  7.         end
  8.     end
  9. )
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote