View Single Post
03-21-15, 10:21 AM   #3
Clamsoda
A Frostmaul Preserver
Join Date: Nov 2011
Posts: 269
I know a decent way to avoid taint is to run the click method on any buttons that exist. You could run the click method on the micro menus' TalentMicroButton. You could then run the click method on the "Glyphs" tab.

Lua Code:
  1. TalentMicroButton:Click()

Lua Code:
  1. if (PlayerTalentFrame:IsShown()) then
  2.     PlayerTalentFrameTab3:Click()
  3. end

I know that doesn't help with load on demand issues, but it is a start.
  Reply With Quote