°°° problem with loading variables °°°

I POSTED THIS ON THE FLASH MX FORUM BUT IT SHOULD BE HERE! SORRY FOR THE DOUBLE POST! HOPE THAT PEOPLE ON THIS FORUM CAN HELP ME OUT!!!

hey there,

I have this problem: I made a swf (called m&d2.swf) with my main navigation. On this main document, there are 6 lines where the variable text comes (called line1; line2;…). When i click a button, the text appears in the right place. I’ll put the script here:

ActionScript:--------------------------------------------------------------------------------on (release) {
line1 = “M&D advertising”;
line2 = “Heirweg 94”;
line3 = “B-8520 Kuurne”;
line4 = “Tel 056/35 85 05”;
line5 = “Fax 056/37 40 72”;
line6 = “[email protected]”;
loadVariables(“line1”, “0”);
loadVariables(“line2”, “0”);
loadVariables(“line3”, “0”);
loadVariables(“line4”, “0”);
loadVariables(“line5”, “0”);
loadVariables(“line6”, “0”);
}


When i click this button, a subnavigation (a swf called corporate.swf) loads on this main document. NOW, HERE IT IS!!!
When i paste the same code on a button from the subnavigation, the text will not load in the main document. I know, it should be something with the target and level thing and using POST or GET, but I can’t find it.
So here is the code I’ve pasted on my button in the corporate.swf (the one which is loaded in the main document).

ActionScript:--------------------------------------------------------------------------------on (release) {
line1 = “Company - History”;
line2 = “”;
line3 = “”;
line4 = “”;
line5 = “”;
line6 = “”;
loadVariables(“line1”, “0”);
loadVariables(“line2”, “0”);
loadVariables(“line3”, “0”);
loadVariables(“line4”, “0”);
loadVariables(“line5”, “0”);
loadVariables(“line6”, “0”);
}


I’ve uploaded the site, you can see it here. The two zipped files are [URL=http://www.md-advertising.be/new/m&d2.zip]here and [URL=http://www.md-advertising.be/new/corporate.zip]here. You can check at the site what I will explain. If you click on the pink button with ‘C’ on, you will see that the word ‘corporate’ appears on the line (variable line1) and the subnavigation (blue buttons) appear. (that is the corporate swf that loads). When you click the blue button with ‘H’ (history), the words ‘Company - History’ should load in that line1. But it doesn’t…

Please help me out, this is urgent! Thank you so much!!!

lampe