Пришлось поизвращаться, но получилось. Если кто знает более оптимальный путь решения проблемы - напишите плиз
Дело в том, что если вставить обычный код вставки Флеша на HTML страницу, то выдается ошибка.
1 ошибка - XSL требует, чтобы тэги были написаны в ниж. регистре.
2 ошибка - XSL требует, чтобы все параметры типа value="test.swf" должны быть именно в таком виде, т.е. переменная="значение_в_кавычках"
3 ошибка - не нашел...
Короче говоря у меня не получилось...
Пришлось посмотреть доки (MSDN) - и вот что нашел - можно в XSL создавать элементы путем написания xsl-тэгов xsl:element & xsl:attribute и вот что получилось:
(выкладываю свой код, может кому пригодится)
<xsl:element name="object">
<xsl:attribute name='classid'>clsid:d27cdb6e-ae6d-11cf-96b8-444553540000</xsl:attribute>
<xsl:attribute name='codebase'>
http://download.macromedia.com/pub/s...ersion=6,0,0,0</xsl:attribute>
<xsl:attribute name='width'>50</xsl:attribute>
<xsl:attribute name='height'>50</xsl:attribute>
<xsl:attribute name='id'>lib_show</xsl:attribute>
<xsl:element name="param">
<xsl:attribute name='name'>movie</xsl:attribute>
<xsl:attribute name='value'>lib_show.swf</xsl:attribute>
</xsl:element>
<xsl:element name="param">
<xsl:attribute name='quality'>movie</xsl:attribute>
<xsl:attribute name='value'>high</xsl:attribute>
</xsl:element>
<xsl:element name="embed">
<xsl:attribute name='src'>lib_show.swf</xsl:attribute>
<xsl:attribute name='quality'>high</xsl:attribute>
<xsl:attribute name='width'>50</xsl:attribute>
<xsl:attribute name='height'>50</xsl:attribute>
<xsl:attribute name='name'>lib_show</xsl:attribute>
<xsl:attribute name='type'>application/x-shockwave-flash</xsl:attribute>
<xsl:attribute name='pluginspage'>
http://www.macromedia.com/go/getflashplayer</xsl:attribute>
</xsl:element>
</xsl:element>