Thread: avoid taint
View Single Post
11-11-22, 03:27 PM   #6
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
Thanks so much SDPhantom for the great explanation.

I think I begin to understand
So following your explanation I begin to looking for some sample code.

I have found this old snippet:

Lua Code:
  1. local done
  2. local function ToggleGuildFrame_hook()
  3.     if not done then
  4.         GuildFrameTab2:Click()
  5.         done=true
  6.     end
  7. end
  8.        
  9. hooksecurefunc("ToggleGuildFrame",ToggleGuildFrame_hook)

For me it doesnt work anymore but it is a good starting point where begin to work on

Thanks again for your time.
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
  Reply With Quote