View Single Post
12-03-16, 05:01 PM   #4
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
Originally Posted by Banknorris View Post
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()
  6.             print(self.i)
  7.         end)
  8.     frames[i]:SetScript("OnLeave", function() end)
  9. end

You forgot the self declaration.

Lua Code:
  1. frames[i]:SetScript("OnEnter", function(self)
  2.             print(self.i)
  3.         end)
  Reply With Quote