just a punk |
12-21-2011 09:33 AM |
TubeAce inside please...
Ive posted this to another board already, but seems you don't visit it too often :)
So here we go.
You guys have a serious bug in your specs. I'm talking about the <flv_embed> block because it includes <object ...> which (according to XML specs) is also considered as an XML tag (yeah just one more tag inside the other one), so everything inside of it (classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' blah..blah..blah) is considered as XML parameters of the <object> tag.
To do it right, you should use CDATA, e.g.:
Code:
...
<flv_embed>
<![CDATA[<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'
codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0'
width='454' height='40** id='player' align='middle'><param name='allowScriptAccess'
value='sameDomain' /><param name='allowFullScreen' value='true' /><param name='menu' value='false' />
<param name='swLiveConnect' value='true' /><param name='quality' value='best' />
<param name='movie' value='http://www.sponsor.com/video.flv/>
<param name='quality' value='best' /><param name='bgcolor' value='#dfe5ef' />
<embed src='http://www.sponsor.com/video.flv' menu='false' scale='noscale' quality='best' bgcolor='#dfe5ef'
width='454' height='40** name='FLVplayer' align='middle' allowScriptAccess='sameDomain'
allowFullScreen='true' type='application/x-shockwave-flash'
pluginspage='http://www.macromedia.com/go/getflashplayer' /></object>]]>
</flv_embed>
...
I hope you understand what I'm talking about.
|