View Single Post
07-22-20, 12:19 PM   #5
Tim
A Rage Talon Dragon Guard
 
Tim's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 309
Code:
do
   for _, frame in pairs({
      "PlayerFrame",
      "TargetFrame", -- you can keep adding more frames
   }) do
      frame:SetAlpha(0)
      frame:HookScript("OnEnter", function(self) self:SetAlpha(1) end)
      frame:HookScript("OnLeave", function(self) self:SetAlpha(0) end)
   end
end
__________________
AddOns: Tim @ WoWInterface
Battle Tag: Mysterio#11164
Current PC Setup: PCPartPicker List
  Reply With Quote