View Single Post
09-29-17, 10:58 AM   #3
Kkthnx
A Cobalt Mageweaver
 
Kkthnx's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2011
Posts: 247
I have noticed this issue too, I fixed it by applying this in my CallbackUpdate

Lua Code:
  1. self:EnableMouse(false) -- For some off reason we need this so we can click our plates..??
  2. self.Health:EnableMouse(false) -- For some off reason we need this so we can click our plates..??

Just so you know the callback is called when you spawn them

Lua Code:
  1. oUF:SpawnNamePlates("KkthnxUINamePlates", CallbackUpdate, CVarUpdate)

@lightspark might be able to spread some more info on this as to why this happens.

Be sure you are applying self.Health.frequentUpdates = true in your code

Also yes you can use the auras creation off oUF.
__________________
Success isn't what you've done compared to others. Success is what you've done compared to what you were made to do.

Last edited by Kkthnx : 09-29-17 at 11:03 AM.
  Reply With Quote