[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Calling a member function using text to specify function name
- From: Colm Sloan <colmsloan@...>
- Date: Mon, 4 Jan 2010 19:55:08 +0000
I'm trying to call a function, let's say it's called:MyClass:MyFunction01
I'm trying to pass the name of the function as text where it can be later called. Here's what I've tried:
local functionName = 'MyClass.MyFunction01'
_G[ functionName ]()
I get the error:
I looked in the _G table and found that it does have the entry for my class and I'm sure my class has that function. Could anyone tell me what I'm doing wrong and how I can fix it?
Thanks :)