STL
Raid-Boss
- Mitglied seit
- 10.06.2007
- Beiträge
- 6.464
- Reaktionspunkte
- 4
- Kommentare
- 192
- Buffs erhalten
- 46
aber wie?
-- Create a new ace2 addon for hooking
THIS_Hook = AceLibrary("AceAddon-2.0"):new("AceHook-2.1")
-- Create a function to resize the eePanel when the hooked frame is resized
function THIS_Hook:OnSizeChanged(frame, ...)
THIS:SetWidth(frame:GetWidth())
THIS:SetHeight(frame:GetHeight())
end
-- Hook to the frame we want to resize against (ChatFrame1 here)
THIS_Hook:HookScript(ChatFrame1, "OnSizeChanged")
Das habe ich auf wowace gefunden, aber das betrifft ja nur den Chat.. Wäre ich nun den Grpframe ansich angeben ("PitbullCluster6UnitButton1") ist das ja nur das erste Party member.. Würde ein "PitbullCluster6" reichen? Oder gibts da irgendwelche anderen Tricks?
lg STL
-- Create a new ace2 addon for hooking
THIS_Hook = AceLibrary("AceAddon-2.0"):new("AceHook-2.1")
-- Create a function to resize the eePanel when the hooked frame is resized
function THIS_Hook:OnSizeChanged(frame, ...)
THIS:SetWidth(frame:GetWidth())
THIS:SetHeight(frame:GetHeight())
end
-- Hook to the frame we want to resize against (ChatFrame1 here)
THIS_Hook:HookScript(ChatFrame1, "OnSizeChanged")
Das habe ich auf wowace gefunden, aber das betrifft ja nur den Chat.. Wäre ich nun den Grpframe ansich angeben ("PitbullCluster6UnitButton1") ist das ja nur das erste Party member.. Würde ein "PitbullCluster6" reichen? Oder gibts da irgendwelche anderen Tricks?
lg STL