这是个flash显示的新闻图片代码。 文字链接默认字体颜色是黑色的。请问:怎么修改,能自定义链接文字的颜色。下面代码里的相关显色的我都改过,没起作用。
<script type="text/javascript">
function showflashsmall(){
 
var focus_width=460
var focus_height=300
var text_height=20var swf_height = focus_height+text_height
var pics ='<%=ImgAddress%> '
var links ='<%=Link%> '
var texts ='<%=Title%> '    document.write('<object id="leftflashsmall" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">'); 
    document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="bcastr.swf"><param name="quality" value="high"><param name="bgcolor" value="#ffffff">'); 
    document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
    document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
    document.write('<param name="color" value="red">');
    document.write('<embed src="bcastr.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight ='+text_height+'" menu="false" bgcolor="#ff0000" quality="high" width="'+ focus_width +'" height="'+ swf_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" color="red" pluginspage="http://www.macromedia.com/go/getflashplayer">');
    document.write('</object>');
 
//-->}</script>