How to read xml file from HTML in flash AS3 through flash var?

This is the AS3 code that calling xml file. I want to call this xml from html of this flash with flash var. Please help me. Thank you.

init();
[COLOR=“Blue”]function[/COLOR] init():[COLOR=“blue”]void[/COLOR] {
initXML([COLOR="#009900"]“load/1.xml”[/COLOR]);
}
[color="#808080"]//loading the _xml[/COLOR]
[COLOR=“Blue”]function[/COLOR] initXML(path:[COLOR=“blue”]String[/COLOR]):[COLOR=“blue”]void[/COLOR] {
_xmlLoader = [COLOR=“blue”]new URLLoader/COLOR;
_xmlLoader.[COLOR=“blue”]load[/COLOR]([COLOR=“blue”]new URLRequest/COLOR);
_xmlLoader.[COLOR=“blue”]addEventListener/COLOR;
[COLOR=“blue”]function[/COLOR] onComplete(e:[COLOR=“blue”]Event[/COLOR]):[COLOR=“blue”]void[/COLOR] {
_xml = [COLOR=“blue”]new XML/COLOR;
_xmlList = _xml.image;
_totalEntries = _xml.image.[COLOR=“blue”]length/COLOR;