In order to reuse a variable from a different timeline within the same fla file you will need to register the inital variable or function as a _global.

Todo this as a variable:

1
_global.myString:String = "My String";

Todo this as a function:

1
_global.myFunction = function() {}