Insering swf file into xml

i have xml file:

<?xml version=“1.0” encoding=“utf-8”?>

<items>
<item>
<content><![CDATA[<span class=“title”>Tworzenie obiektow 3D i poruszanie nimi</span>

<span class=“subtitle”>Obracanie obiektu w przestrzeni 3D</span>
<p align=“justify”>Prosty przyklad pokazujacy obrot obiektu. W obszarze roboczym trzeba stworzyc nowy obiekt,

przeksztalcic go w movieClip o nazwie mc.</p>
<span class=“note”>this.addEventListener(Event.ENTER_FRAME, onLoop);
function onLoop(evt:Event):void {
mc.rotationY = mouseX;
}</span>

]]></content>
</item>
</items>

i want insert swf file i trying everything with not use. code from flash made html not working. if anyone have a clue i would be grateful

It wouldn’t be the best to put code directly in XML, but rather use the XML to give reference to(eg an id of your file or a file location), javascript to whatever content you want to present and use javascript to render the .swf file to the page.