Attaching stylesheet to multiple text boxes

[font=Arial]Hi, I’ve got a flash project with an empty content clip instance called content_mc. Depending on the button pressed, it attaches a movieclip from the library with the name contentDisplay_mc under content_mc. Now the structure of these subclips are pretty much the same with a textbox called Display. The code on Frame 1 of main timeline:[/font]

[color=darkgreen][font=Courier New]//tell Flash to display special characters[/font]
[font=Courier New]System.useCodepage=true; [/font]
[font=Courier New]var cssStyles = new TextField.StyleSheet();[/font]
[font=Courier New]var generic_lv = new LoadVars();[/font][/color]
[color=darkgreen][font=Courier New]cssStyles.onLoad = function() {[/font]
[font=Courier New]content_mc.contentDisplay_mc.display.styleSheet = this;[/font]
[font=Courier New]content_mc.contentDisplay_mc.display.html=true; [/font]
[font=Courier New]}[/font][/color]
[font=Courier New] [/font]
[color=darkgreen][font=Courier New]generic_lv.onLoad = function (success){ [/font]
[font=Courier New]if (success == true) { [/font]
[font=Courier New]content_mc.contentDisplay_mc.display.htmlText = generic_lv.textvar; [/font][/color][color=darkgreen]
[font=Courier New]}[/font]
[font=Courier New]} [/font][/color]
[color=darkgreen][font=Courier New]function loadmc(id) {[/font]
[font=Courier New]content_mc.attachMovie(id, “contentDisplay_mc”, getNextHighestDepth());[/font]
[font=Courier New]cssStyles.load(“cssStyles.css”);[/font]
[font=Courier New]}[/font][/color]
[font=Courier New][/font][color=darkgreen]
[font=Courier New][color=navy]//initial mc to attach[/color][/font]
[font=Courier New]loadmc(“content0”);[/font]
[font=Courier New] [/font]
[font=Courier New][color=navy]//define action for buttons[/color][/font][/color]
[color=darkgreen][font=Courier New]menu_mc.btn0.onRelease = function() {[/font]
[font=Courier New]loadmc(“content0”);[/font]
[font=Courier New]}[/font]
[font=Courier New]menu_mc.btn1.onRelease = function() {[/font]
[font=Courier New]loadmc(“content1”);[/font]
[font=Courier New]}[/font][/color]
[font=Courier New][color=darkgreen]
[font=Arial][color=black]Now the movieclips and associated text files are loading alright, but somehow the stylesheet isn’t being applied to content1, although it is to content0. [/color][/font]

[font=Arial][color=black]The code in content0[/color][/font]
[font=Arial][color=black][font=Courier New]_root.generic_lv.load(“content.txt”);[/font] [/color][/font]

[font=Arial][color=black]The code in content1[/color][/font]
[font=Courier New][color=black]_root.generic_lv.load(“content1.txt”);[/color][/font]

[font=Arial]Can anyone help me out?[/font][/color][/font]