From: William Johnston on

Hi,

For the following code from a Silverlight Javascript file:

// Play the video
sender.findName("movie_segment19_WMV").play();

What is the mapping for the findName parameter?

And, how do I set this mapping?

Thanks,
William Johnston

From: pr on
William Johnston wrote:
> For the following code from a Silverlight Javascript file:
>
> // Play the video
> sender.findName("movie_segment19_WMV").play();
>
> What is the mapping for the findName parameter?
>
> And, how do I set this mapping?

Not sure what you mean by mapping (or reference for that matter), but
did you look here: <URL:
http://msdn2.microsoft.com/en-gb/library/bb979849.aspx>?
From: William Johnston on
"William Johnston" <williamj(a)tenbase2.com> wrote:
>

Also, how do I obtain the sender value from either javascript or HTML?

Here is my javascript function:

<script type="text/javascript">
function SetMediaSource()
{
alert("inside SetMediaSource!");
var url2 = form1.url.value;
SetMediaElementSource(sender, url2);
}
</script>


Thanks,
William Johnston