Thread: DropDown Menus
View Single Post
06-11-14, 01:55 PM   #13
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by TULOA View Post
Tried every time I try EasyMenu it fails saying it cant find the menuList or its nil. Ill just do it promatically the standard way then.
Without seeing your code and the actual error message, it's impossible to say for sure, but I'd put money on the problem being bad scoping in your code, eg:

Code:
print(SomeVar) -- error because SomeVar is not defined yet
local SomeVar = "cats"
or:

Code:
do
    local SomeVar = "cats"
end
print(SomeVar) -- error because SomeVar only exists in the do-end block above, not here
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.