View Single Post
12-03-16, 04:29 PM   #3
Banknorris
A Chromatic Dragonspawn
 
Banknorris's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 153
Lua Code:
  1. for i=1, #table, 1 do
  2.     frames[i]=CreateFrame()
  3.     frames[i].i=i
  4.     frames[i]:SetPoint('CENTER', UI, 'CENTER' x, y)
  5.     frames[i]:SetScript("OnEnter", function(self)
  6.             print(self.i)
  7.         end)
  8.     frames[i]:SetScript("OnLeave", function() end)
  9. end
__________________
"In this world nothing can be said to be certain, except that fractional reserve banking is a Ponzi scheme and that you won't believe it." - Mandrill

Last edited by Banknorris : 12-03-16 at 05:22 PM. Reason: Missing self declaration, thansk to Kanegasi.
  Reply With Quote