make use of _global to open the scope of the variable to all timelines in the Player session.
For example, an input textfield with <instance name> myInput -

_global.myVar = myInput.text;

on any movieclip timeline - trace(myVar); will work
on any loaded movie - trace(myVar); will work

hth