Line chart

Hello,

For some reason, I cannot pass a variable from one movie to another.

GENERAL PROBLEM:
I want load a line chart into a movie at a specific keyframe and then pass it data, axis labels, etc. I can load the movie just fine, but cannot pass it variables even if they are globals.

SPECIFIC PROBLEM:
Specifically, I have defined a global variable (_global.chartname = “Some Title”) in Movie A. In Movie B, I can sucessfully load Movie A using the loadMovie command into layer 1. However, if I try to access the global variable I created in A it returns as undefined.

WHAT I’VE TRIED:
To access the variable I have tried using the following code after the loadMovie command, which all return undefined;

_global.chartname
_level1._global.chartname
_level._root._global.chartname

…and a bunch of other things that have not worked. PLEASE help.