I have a main movie with dropdown menus and i am trying lo load another movie into it in an emtpy clip (thats not the issue). I have the “subpages” loading from the dropdowns and the content from pages in turn are being loaded externally from a txt file. The code I have for my sub pages works to load the text file in one frame which is this:
but1.onRelease=function(){
loadVariablesNum ("contact.txt", 0);
}
but2.onRelease=function(){
loadVariablesNum ("about.txt", 0);
}
And on the drop down its this:
on(release){
_root.mtClip.Movie("company.swf");
}
How do I make the drop down on the main template page load the company movie and then load the corrosponding text. For Example if on the main movie you click about us on the drop down how do i make it 1. load the company movie 2. load the text from about.txt ?
If anyone could help that would be great
Jeff