edit a param value

A

Andrew Poulos

I have some HTML that look like this:

<object
type="video/x-ms-wvx"
data="sample.wvx"
style="position:absolute; left:0; top:0; width:100%; height:100%;">
<param name="src" value="sample.wvx">
<param name="autostart" value="1">
<param name="playcount" value="1">
<param name="showcontrols" value="1">
</object>

How is it possible to edit/change the value of a PARAM?

Andrew Poulos
 
S

SAM

Andrew Poulos a écrit :
How is it possible to edit/change the value of a PARAM?


<object
id="myVideo"
type="video/x-ms-wvx"
data="sample.wvx"
style="position:absolute; left:0; top:0; width:100%; height:100%;">
<param name="src" value="sample.wvx">
<param name="autostart" value="1">
<param name="playcount" value="1">
<param name="showcontrols" value="1">
</object>



var Video = document.getElementById('myVideo');
var New = Video.cloneNode(true);
New.data = 'other.wvx';
var Params = New.getElementsByTagName('param');
for(var i=0; i<Params.length; i++)
if(Params.name=='src') Params.value = 'other.wvx';
Video.parentNode.replaceChild(New, Video);


could work
 
T

Thomas 'PointedEars' Lahn

Andrew said:
I have some HTML that look like this:

<object
type="video/x-ms-wvx"
data="sample.wvx"
style="position:absolute; left:0; top:0; width:100%; height:100%;">
<param name="src" value="sample.wvx">
<param name="autostart" value="1">
<param name="playcount" value="1">
<param name="showcontrols" value="1">
</object>

How is it possible to edit/change the value of a PARAM?

The same way you would modify any other attribute value. However, that
would have little effect to the display of the media object after it was
rendered, if any. Search the Windows Media Player SDK in the MSDN Library
for the latter.


PointedEars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,070
Latest member
BiogenixGummies

Latest Threads

Top