View Single Post
11-30-05, 11:43 PM   #2
Aquendyn
A Deviate Faerie Dragon
Join Date: Sep 2005
Posts: 12
you can try to hook into GameTooltip's OnShow trigger.

Ex.
PHP Code:
local oldGTScript GameTooltip:GetScript("ONSHOW");
GameTooltip:SetScript("ONSHOW", function()
    if (
oldGTScriptthen
        oldGTScript
();
    
end
    CoolTip_OnShow
();
end ); 
  Reply With Quote