View Single Post
09-28-16, 09:58 AM   #3
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,326
Originally Posted by ruadh View Post
Code:
myFrame:SetScript("OnEvent", function(event) print(event); print(self.name); end)
This line should be printing something like table:1A2B3C4D and throwing an "attempt to index nil" error if it's being run. The function definition is missing self as the first parameter. event is the second followed by a list of arguments specific to the event fired.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)

Last edited by SDPhantom : 09-28-16 at 10:02 AM.
  Reply With Quote