View Single Post
01-05-18, 11:26 AM   #5
warcry16
A Murloc Raider
Join Date: Jan 2018
Posts: 6
Originally Posted by Fizzlemizz View Post
Once you have the frame (bubbleframe here) you can use:
Lua Code:
  1. for i = 1, select("#", bubbleframe:GetRegions()) do
  2.     local region = select(i, bubbleframe:GetRegions())
  3.     if region:GetObjectType() == "FontString" then
  4.         region:SetShadowOffset(2, -2)
  5.     end
  6. end

Personally I can't figure out when/why the system will use protected chat bubble frames or not.
How exactly do I insert this , do I make a new lua file and just make it an addon ? Or something else? Very new to these kind of things. Thanks for the help

edit: I don't really want to open another thread for little ui questions, but is it possible to move the dot icons on the nameplates further down? On my nameplates they are way to far above:

https://i.imgur.com/GzrYSKn.png

If there is another command for this , that would make my day !

Last edited by warcry16 : 01-05-18 at 11:36 AM.
  Reply With Quote