View Single Post
07-18-05, 02:16 AM   #3
EyesMcFly
A Defias Bandit
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 3
Actually I figured out the problem.

I had:

Code:
function enable()
		this:RegisterEvent(the event);
end
Changing it to:

Code:
function enable()
		MyFrameName:RegisterEvent(the event);
end
Fixed it.
  Reply With Quote