So this is related to the question I posted earlier about populating a text box... It's getting the text from the Component Parameters, but if there are html tags (to bold a word in the text) it works, but after saving and closing, then reopening, the text is gone. However, the text will still be there in the Component Parameter if it does not have any HTML coding in it.
Here's the action script for the text field:
Code:
var tempString = "";
content_slide_mc.note_txt2.html = true;
for (i=0; i<stepsArray.length; i++) {
	tempString += (i+1)+". "+stepsArray[i]+"<br>";
}
content_slide_mc.note_txt2.htmlText = tempString;
I didn't create this and don't really know this level coding, so am not sure what's broken. Can anyone see why the text disappears from the parameters after being reopened?

Thanks!