View Single Post
07-19-10, 07:21 PM   #42
Dridzt
A Pyroguard Emberseer
 
Dridzt's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2005
Posts: 1,360
Originally Posted by dlui View Post
dear Nitearrow01,

as far as i know there is no clean way for an addon to hide the ui while in combat.

sorry.
Try this dlui.
Code:
if MultishotConfig.hideui then
  local oldalpha = UIParent:GetAlpha()
  UIParent:SetAlpha(0)
  Screenshot()
  UIParent:SetAlpha(oldalpha)
else
  Screenshot()
end
  Reply With Quote