The scope of a function is like the scope of a variable; it is directly available (called by name, instead of dot syntax mapping to the function) only in the following ways:
If the function is called on the same timeline the variable was created in.
If the function is called from a button where the function resides on the same timeline as the button that called it.