Skip to content

Instantly share code, notes, and snippets.

@yaroot
Created October 27, 2009 07:05
Show Gist options
  • Save yaroot/219376 to your computer and use it in GitHub Desktop.
Save yaroot/219376 to your computer and use it in GitHub Desktop.
local function onLeave(self)
self:SetAlpha(0)
end
local function onEnter(self)
self:SetAlpha(1)
end
local function hook(self)
self:SetScript('OnEnter', onEnter)
self:SetScript('OnLeave', onLeave)
end
-- hook(xxFrame)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment