I guess I'm the only one hear that knows anything about my plight?
Anyway, here's what I've been able to accomplish:
Code:
<script type="text/javascript" language="JavaScript">
<!--//
function getCurrentPosition()
{
return document.getElementById('VIDEO').CurrentPosition;
}
//->
</script>
This works only if I set the CurrentPosition parameter when I'm defining my embeded object. Unfortunately, the CurrentPosition field doesn't seem to be one that updates over time. A very disheartening problem I've run into is that I can't actually send any commands at all to the embedded object, like:
document.getElementById('Video').stop()
and
document.getElementById('Video').controls.stop()
and
document.getElementById('Video').getAttributeById( 'controls').stop()
all fail to stop the video.
This is the most frustrating programming problem I have ever had - period. Is there any good documentation on this stuff? Everything google tells me doesn't work
