# XML and embedded fonts?

**URL:** https://forum.kirupa.com/t/xml-and-embedded-fonts/173814
**Category:** flash
**Created:** [December 30, 2005, 12:07am UTC](https://forum.kirupa.com/t/xml-and-embedded-fonts/173814 "2005-12-30T00:07:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Rob\_Hed](https://avatars.discourse-cdn.com/v4/letter/r/8e7dd6/32.png) [@Rob\_Hed](https://forum.kirupa.com/u/Rob_Hed)
#### Post date: [December 30, 2005, 12:07am UTC](https://forum.kirupa.com/t/xml-and-embedded-fonts/173814/1 "2005-12-30T00:07:09Z")

</div>

I load my xml in and output book1\_title to a textbox and it works fine. When I tilt the text box the text won’t show up. I used embedded fonts with the html button selected but still doesn’t work. Any ideas? (Another thread mentioned something about toString but I don’t know how to do that.)

```auto
var myXML:XML = new XML();
myXML.ignoreWhite = true;
myXML.onLoad = processXML;

myXML.load("bookcase3.xml");

function processXML(success:Boolean):Void {
	if (success) {
		//displaying the root node name
		var RootNode:XMLNode = this.firstChild;
		book1_title = RootNode.firstChild.childNodes[0].childNodes[0].nodeValue;
	}
	else {
		trace ("Error loading XML file")
	}
}

```
