where is charts coming from? is it a variable you declared inside the html? cause i dunno if that will work the same in flash (using the _x and _y properties outside flash).
My flash document has several movieclips placed in the work area, out of normal site in the published SWF. These movieclip instances have been given the names “HOME”, “CHARTS”, “TEAM”, etc, etc.
I want flash to look at the SWF coding on the HTML page, and read the variable value of “sectionheader”
This value will then be used to complete the following script and move the appropriate movieclip instance into view.
for example.
navi.swf?sectionheader=charts
will result in
charts._x = 10;
charts._y = 290;
or
navi.swf?sectionheader=home
will result in
home._x = 10;
home._y = 290;
I hope this helps a little more, sorry for my poor explanation. As I said before this method of passing variables from HTML works fine for TextAreas and Frame Labels, but does not work for movieclip instance names so far.