View Single Post
01-01-15, 12:03 PM   #9
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by cokedrivers View Post
is there a SetPoint I can use to have the tooltip for the hyperlink show above my chatframe instead of above my mainmenubar?
You can use SetPoint, but you have to use SetOwner first with "ANCHOR_NONE", eg.

Code:
tooltip:SetOwner(parentFrame, "ANCHOR_NONE")
tooltip:SetPoint("BOTTOM", parentFrame, "TOP", 10, 0)
Note that only applies to the GameTooltip; the other tooltip-like frames don't have SetOwner, so you should just be able to SetPoint them (but don't forget to ClearAllPoints first)... if it looks/acts oddly, check the default UI code to see what it does when showing those frames.

Also, you shouldn't use Bugger and BugSack at the same time -- they both do the same thing. Pick the one you prefer, and get rid of the othe one.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote