Here’s what I’m trying to go for:
I have a base movie where three buttons are stored. when one of them is clicked I need some variables to be sent to the new external mc.
first variable is the title of the section, second is a brief description of the section and the third is the name of the movieclip to load.
on(release) {
empty.loadMovie(“section.swf”);
empty.test.text = “section I”;
empty.desc.text = “blahlkl;aksdjf;laksjdf;lskjdfa;lskdjf”;
empty.mc = “base.swf”;
}
test is the name of the field. I get nothing when trying this. Any help would be greatly appreciated.