oh sorry!
only first clip can run,second and third clips are not disappeared
and select box very small , i can only see "V"characte r(in FF i can see the full text inside the select box).
thanks to yr answer.
hmmm ... the selectbox issue comes from you selects css style - just remove it to see the effect ...
the other issue with the replacing of the nodes ... seems to be an IE bug (look here ) and may be you should replace the embed with the object tag - which is the w3c standards-compliant way to embed flash ... have a look at the link in the answers at quirksmode.org (i mean this one) ...
Thanks very much!!!
I've tried to put it in 2 ways like this :
First :
[html]<OBJECT classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,40,0"
WIDTH="204" HEIGHT="183" id="video_conta iner"><PARAM NAME=movie VALUE="flash/video0.swf"><PA RAM NAME=quality VALUE=high><PAR AM NAME=bgcolor VALUE=#FFFFFF>< EMBED src="flash/video0.swf" quality=high bgcolor=#FFFFFF WIDTH="204" HEIGHT="183"
NAME="myMovieNa me" ALIGN="" TYPE="applicati on/x-shockwave-flash"
PLUGINSPAGE="ht tp://www.macromedia. com/go/getflashplayer" ></EMBED></OBJECT> [/html]
nope ... that should have worked with the 'embed-version' ... :)
try this:
[CODE=javascript]
function change(node) {
var video = document.getEle mentById('video _container');
var o_param = video.getElemen tsByTagName('pa ram')[0];
var n_param = o_param.cloneNo de(true);
</SCRIPT>-->
<SCRIPT LANGUAGE="JavaS cript" TYPE="text/javascript">
function change(node) {
var video = document.getEle mentById('video _container');
var o_param = video.getElemen tsByTagName('pa ram')[0];
var n_param = o_param.cloneNo de(true);
thanks gits!
the problem is can not change video in IE, i only can play video0.swf when i click another one , its still video0.swf. firefox is ok .i m using IE 7
what is the problem ?
best regards
Comment