View Single Post
11-11-10, 02:09 AM   #79
xConStruct
A Chromatic Dragonspawn
 
xConStruct's Avatar
AddOn Author - Click to view addons
Join Date: May 2008
Posts: 199
You could create an invisible frame which has the same position as the tag and then set the OnEnter()-script on this. E.g:
Code:
local enterFrame = CreateFrame("Frame", nil, self)
enterFrame:SetAllPoints(myTagDisplay)
enterFrame:SetScript("OnEnter", myEnterScript)
__________________
« Website | GitHub »

Oh hai!
  Reply With Quote