self.text = _G[self:GetName() .. "Text"];
self.button = _G[self:GetName() .. "SecureButton"];
self:SetAlpha(1.0);
if ( not self.show ) then
self:SetAlpha(0);
end
VoiceChatButton_OnEvent(self, event, ...);
self:SetBackdropBorderColor(0.5, 0.5, 0.5, 0.5);
self:SetBackdropColor(TOOLTIP_DEFAULT_BACKGROUND_COLOR.r, TOOLTIP_DEFAULT_BACKGROUND_COLOR.g, TOOLTIP_DEFAULT_BACKGROUND_COLOR.b, 0.5);
VoiceChatTalkers_OnLoad(self);
self:SetAlpha(1.0);
self.mouseoverLock = true;
if ( self:IsMouseOver() ) then
return;
end
self.mouseoverLock = nil;
if ( VoiceChatTalkers_CanHide() ) then
self:SetAlpha(0);
end
MOVING_FRAME = self;
self:SetFrameStrata("DIALOG");
self:StartMoving();
self.moving = true;
UIParent_ManageFramePositions();
self:StopMovingOrSizing();
self:SetFrameStrata("DIALOG");
ValidateFramePosition(self, 25);
self.moving = false;
MOVING_FRAME = nil;