View Single Post
11-03-13, 09:41 AM   #7
Resike
A Pyroguard Emberseer
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,290
Originally Posted by Dridzt View Post
That is mentioned in the threads I linked earlier and is also not a generic fix.
It only works for frames that contain no secure elements (eg. WorldMapFrame) it will fail on any frame that does (Friends, Raid etc etc)

The best generic "fix" at the moment is selectively hiding the error popup as Oscarucb has suggested.
Code:
UIParent:HookScript("OnEvent", function(s, e, a1, a2) if e:find("ACTION_FORBIDDEN") and ((a1 or "")..(a2 or "")):find("IsDisabledByParentalControls") then StaticPopup_Hide(e) end; end)
How about using both?
  Reply With Quote