что ж вы ленивые то такие... =(
test.txt
------------------------------------------
qwerty=666
------------------------------------------
code.as
------------------------------------------

Код:
_root.loadVariables("test.txt");
_root.onData = function()
{
if (qwerty != null)
{
trace(qwerty);
}
}
------------------------------------------