I don’t seem to be be able to call a function in another function unless this function code is above the function calling it.
So for example
local function sayHello()
print ("Hello ")
end
local function sayHelloPaul()
sayHello()
end
local function sayPaul()
print ("Paul ")
end
sayHelloPaul()
I am having problems adhering to this requirement and wondered if there is a way to predeclare functions or something like that? [import]uid: 7863 topic_id: 2632 reply_id: 302632[/import]