View Single Post
11-07-13, 10:46 AM   #3
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2011
Posts: 583
I did a bit of fiddling, unfortunately I'm away from the desktop so I can't test it but I think I can do something like this for the key press, I'm probably way off though.

Code:
frame:SetScript("OnMouseDown", function(self, btn)
if btn == "RightButton" then  
  IsShiftKeyDown() then frame:Show() end end)
  else
    frame:Hide()
end
__________________
Tweets YouTube Website
  Reply With Quote